'Declaration
Function RegisterNode( _ ByVal endpointDescriptorString As String, _ ByVal nodeDescriptorString As String _ ) As Integer
'Usage
Dim instance As _EasyUAClientNodeRegistration Dim endpointDescriptorString As String Dim nodeDescriptorString As String Dim value As Integer value = instance.RegisterNode(endpointDescriptorString, nodeDescriptorString)
int RegisterNode( string endpointDescriptorString, string nodeDescriptorString )
int RegisterNode( String^ endpointDescriptorString, String^ nodeDescriptorString )
Parameters
- endpointDescriptorString
The value represents an OPC UA endpoint descriptor string. Any string can be passed to this parameter (i.e. will not cause System.ArgumentException), but not all values make sense and will work when an operation using them is attempted. The OPC UA endpoint descriptor string is typically the URL of the server endpoint.
The value of this parameter can be
null
(Nothing
in Visual Basic).- nodeDescriptorString
The value of this parameter can be
null
(Nothing
in Visual Basic).