 | DataContextViewTContextContextChangedDelegate Delegate |
Delegate for the ContextChanged event.
Namespace:
Slash.Unity.DataBind.StrangeIoC
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntaxpublic delegate void ContextChangedDelegate(
TContext newContext,
TContext oldContext
)
Public Delegate Sub ContextChangedDelegate (
newContext As TContext,
oldContext As TContext
)
public delegate void ContextChangedDelegate(
TContext newContext,
TContext oldContext
)
type ContextChangedDelegate =
delegate of
newContext : 'TContext *
oldContext : 'TContext -> unit
Parameters
- newContext
- Type: TContext
New context of the view. - oldContext
- Type: TContext
Old context of the view.
See Also