Build 1.01.318.0

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

The delegate used to receive data change 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 FastDataChangeNotificationEventHandler(
	Subscription subscription,
	DataChangeNotification notification,
	IList<string> stringTable
)
Visual Basic
Public Delegate Sub FastDataChangeNotificationEventHandler ( _
	subscription As Subscription, _
	notification As DataChangeNotification, _
	stringTable As IList(Of String) _
)
Visual C++
public delegate void FastDataChangeNotificationEventHandler(
	Subscription^ subscription, 
	DataChangeNotification^ notification, 
	IList<String^>^ stringTable
)

Parameters

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

See Also