Build 1.01.318.0

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

The delegate used to receive event notifications via a direct function call instead of a .NET Event.

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

Syntax

C#
public delegate void FastEventNotificationEventHandler(
	Subscription subscription,
	EventNotificationList notification,
	IList<string> stringTable
)
Visual Basic
Public Delegate Sub FastEventNotificationEventHandler ( _
	subscription As Subscription, _
	notification As EventNotificationList, _
	stringTable As IList(Of String) _
)
Visual C++
public delegate void FastEventNotificationEventHandler(
	Subscription^ subscription, 
	EventNotificationList^ notification, 
	IList<String^>^ stringTable
)

Parameters

subscription
Type: Opc.Ua.Client..::..Subscription
notification
Type: EventNotificationList
stringTable
Type: System.Collections.Generic..::..IList<(Of <(<'String>)>)>

See Also