ISubscribeSubscribe Method (String, ActionObject, NullableGuid) |
Subscribes the specified 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 Subscribe(
string propertyName,
Action<Object> onChanged,
Nullable<Guid> ownerId = null
)
Sub Subscribe (
propertyName As String,
onChanged As Action(Of Object),
Optional ownerId As Nullable(Of Guid) = Nothing
)
void Subscribe(
String^ propertyName,
Action<Object^>^ onChanged,
Nullable<Guid> ownerId = nullptr
)
abstract Subscribe :
propertyName : string *
onChanged : Action<Object> *
?ownerId : Nullable<Guid>
(* Defaults:
let _ownerId = defaultArg ownerId null
*)
-> unit
Parameters
- propertyName
- Type: SystemString
Name of the property. - onChanged
- Type: SystemActionObject
The on changed. - ownerId (Optional)
- Type: SystemNullableGuid
The owner identifier.
See Also