'Declaration
Public Function New( _ ByVal state As Object, _ ByVal discoveryElement As UADiscoveryElement, _ ByVal nodeElement As IUANodeElement _ )
'Usage
Dim state As Object Dim discoveryElement As UADiscoveryElement Dim nodeElement As IUANodeElement Dim instance As New UANodeArguments(state, discoveryElement, nodeElement)
public UANodeArguments( object state, UADiscoveryElement discoveryElement, IUANodeElement nodeElement )
public: UANodeArguments( Object^ state, UADiscoveryElement^ discoveryElement, IUANodeElement^ nodeElement )
Parameters
- state
- User-defined state object.
The value of this parameter can be
null
(Nothing
in Visual Basic). - discoveryElement
- Application element object that provides information about the OPC-UA server.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - nodeElement
- Node element object that provides the Node Id.
This is typically the OpcLabs.EasyOpc.UA.AddressSpace.UANodeElement object.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).