Build 1.01.318.0

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

Used to receive notifications when a node browser is created.

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

Syntax

C#
public delegate NodeBrowser NodeStateCreateBrowserEventHandler(
	ISystemContext context,
	NodeState node,
	ViewDescription view,
	NodeId referenceType,
	bool includeSubtypes,
	BrowseDirection browseDirection,
	QualifiedName browseName,
	IEnumerable<IReference> additionalReferences,
	bool internalOnly
)
Visual Basic
Public Delegate Function NodeStateCreateBrowserEventHandler ( _
	context As ISystemContext, _
	node As NodeState, _
	view As ViewDescription, _
	referenceType As NodeId, _
	includeSubtypes As Boolean, _
	browseDirection As BrowseDirection, _
	browseName As QualifiedName, _
	additionalReferences As IEnumerable(Of IReference), _
	internalOnly As Boolean _
) As NodeBrowser
Visual C++
public delegate NodeBrowser^ NodeStateCreateBrowserEventHandler(
	ISystemContext^ context, 
	NodeState^ node, 
	ViewDescription^ view, 
	NodeId^ referenceType, 
	bool includeSubtypes, 
	BrowseDirection browseDirection, 
	QualifiedName^ browseName, 
	IEnumerable<IReference^>^ additionalReferences, 
	bool internalOnly
)

Parameters

context
Type: Opc.Ua..::..ISystemContext
node
Type: Opc.Ua..::..NodeState
view
Type: ViewDescription
referenceType
Type: Opc.Ua..::..NodeId
includeSubtypes
Type: System..::..Boolean
browseDirection
Type: BrowseDirection
browseName
Type: Opc.Ua..::..QualifiedName
additionalReferences
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'IReference>)>)>
internalOnly
Type: System..::..Boolean

See Also