ServerClientSessionUnsubscribeToChanges Method |
Unsubscribe to committed database changes of instances of a type when an optional property evaluates to true.
Namespace:
VelocityDb.Session
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public override void UnsubscribeToChanges(
Type aType,
string notifyIfTrueProperty = null
)
Public Overrides Sub UnsubscribeToChanges (
aType As Type,
Optional notifyIfTrueProperty As String = Nothing
)
public:
virtual void UnsubscribeToChanges(
Type^ aType,
String^ notifyIfTrueProperty = nullptr
) override
abstract UnsubscribeToChanges :
aType : Type *
?notifyIfTrueProperty : string
(* Defaults:
let _notifyIfTrueProperty = defaultArg notifyIfTrueProperty null
*)
-> unit
override UnsubscribeToChanges :
aType : Type *
?notifyIfTrueProperty : string
(* Defaults:
let _notifyIfTrueProperty = defaultArg notifyIfTrueProperty null
*)
-> unit
Parameters
- aType
- Type: SystemType
The type you are no longer interested in being notified about when persistent instances changes within a database. - notifyIfTrueProperty (Optional)
- Type: SystemString
The name of a property part of the type specified as aType, this should be a Boolean property.
See Also