ISubscribeClearSubscriptionsT Method (ExpressionFuncT, NullableGuid) |
Clears the subscriptions.
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 ClearSubscriptions<T>(
Expression<Func<T>> property,
Nullable<Guid> ownerId = null
)
Sub ClearSubscriptions(Of T) (
property As Expression(Of Func(Of T)),
Optional ownerId As Nullable(Of Guid) = Nothing
)
generic<typename T>
void ClearSubscriptions(
Expression<Func<T>^>^ property,
Nullable<Guid> ownerId = nullptr
)
abstract ClearSubscriptions :
property : Expression<Func<'T>> *
?ownerId : Nullable<Guid>
(* Defaults:
let _ownerId = defaultArg ownerId null
*)
-> unit
Parameters
- property
- Type: System.Linq.ExpressionsExpressionFuncT
The property. - ownerId (Optional)
- Type: SystemNullableGuid
The owner identifier.
Type Parameters
- T
See Also