SubscriptionItem Constructor (String, ActionObject, NullableGuid) |
Namespace:
Xcalibur.Extensions.MVVM.Models
Assembly:
Xcalibur.Extensions.MVVM (in Xcalibur.Extensions.MVVM.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public SubscriptionItem(
string name,
Action<Object> onChanged,
Nullable<Guid> ownerId = null
)
Public Sub New (
name As String,
onChanged As Action(Of Object),
Optional ownerId As Nullable(Of Guid) = Nothing
)
public:
SubscriptionItem(
String^ name,
Action<Object^>^ onChanged,
Nullable<Guid> ownerId = nullptr
)
new :
name : string *
onChanged : Action<Object> *
?ownerId : Nullable<Guid>
(* Defaults:
let _ownerId = defaultArg ownerId null
*)
-> SubscriptionItem
Parameters
- name
- Type: SystemString
The name. - onChanged
- Type: SystemActionObject
The on changed. - ownerId (Optional)
- Type: SystemNullableGuid
The owner identifier.
See Also