INotifyNotifyOfChangeT Method (ExpressionFuncT, T, T, Action) |
Notifies the of change.
Namespace:
Xcalibur.Extensions.MVVM.Interfaces
Assembly:
Xcalibur.Extensions.MVVM (in Xcalibur.Extensions.MVVM.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax void NotifyOfChange<T>(
Expression<Func<T>> property,
T newValue,
ref T valueReference,
Action onChanged = null
)
Sub NotifyOfChange(Of T) (
property As Expression(Of Func(Of T)),
newValue As T,
ByRef valueReference As T,
Optional onChanged As Action = Nothing
)
generic<typename T>
void NotifyOfChange(
Expression<Func<T>^>^ property,
T newValue,
T% valueReference,
Action^ onChanged = nullptr
)
abstract NotifyOfChange :
property : Expression<Func<'T>> *
newValue : 'T *
valueReference : 'T byref *
?onChanged : Action
(* Defaults:
let _onChanged = defaultArg onChanged null
*)
-> unit
Parameters
- property
- Type: System.Linq.ExpressionsExpressionFuncT
The property. - newValue
- Type: T
The new value. - valueReference
- Type: T
The value reference. - onChanged (Optional)
- Type: SystemAction
The configuration changed.
Type Parameters
- T
See Also