INotifyUpdatePropertyT Method (ExpressionFuncT, Action) |
Updates the property.
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 UpdateProperty<T>(
Expression<Func<T>> property = null,
Action onChanged = null
)
Sub UpdateProperty(Of T) (
Optional property As Expression(Of Func(Of T)) = Nothing,
Optional onChanged As Action = Nothing
)
generic<typename T>
void UpdateProperty(
Expression<Func<T>^>^ property = nullptr,
Action^ onChanged = nullptr
)
abstract UpdateProperty :
?property : Expression<Func<'T>> *
?onChanged : Action
(* Defaults:
let _property = defaultArg property null
let _onChanged = defaultArg onChanged null
*)
-> unit
Parameters
- property (Optional)
- Type: System.Linq.ExpressionsExpressionFuncT
The property. - onChanged (Optional)
- Type: SystemAction
The configuration changed.
Type Parameters
- T
See Also