Build 1.01.318.0

[This is preliminary documentation and is subject to change.]

The delegate for functions used to receive subscription related events.

Namespace: Opc.Ua.Server
Assembly: Opc.Ua.Server (in Opc.Ua.Server.dll) Version: 1.1.318.1 (1.01.318.1)

Syntax

C#
public delegate void SubscriptionEventHandler(
	Subscription subscription,
	bool deleted
)
Visual Basic
Public Delegate Sub SubscriptionEventHandler ( _
	subscription As Subscription, _
	deleted As Boolean _
)
Visual C++
public delegate void SubscriptionEventHandler(
	Subscription^ subscription, 
	bool deleted
)

Parameters

subscription
Type: Opc.Ua.Server..::..Subscription
The subscription that was affected.
deleted
Type: System..::..Boolean
True if the subscription was deleted.

See Also