INotifyUpdateProperty Method (String, 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(
string propertyName = null,
Action onChanged = null
)
Sub UpdateProperty (
Optional propertyName As String = Nothing,
Optional onChanged As Action = Nothing
)
void UpdateProperty(
String^ propertyName = nullptr,
Action^ onChanged = nullptr
)
abstract UpdateProperty :
?propertyName : string *
?onChanged : Action
(* Defaults:
let _propertyName = defaultArg propertyName null
let _onChanged = defaultArg onChanged null
*)
-> unit
Parameters
- propertyName (Optional)
- Type: SystemString
Name of the property. - onChanged (Optional)
- Type: SystemAction
The on changed.
See Also