QuickOPC User's Guide and Reference
Parse Method (UANodeId)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.AddressSpace Namespace > UANodeId Class : Parse Method
Expanded text of the node Id.
The default namespace to be used if no namespace is specified in the input string.
Parses a string containing an OPC-UA node Id (its expanded text), and returns a corresponding node Id object.
Syntax
'Declaration
 
<NotNullAttribute()>
Public Shared Function Parse( _
   ByVal s As String, _
   ByVal defaultNamespaceUriString As String _
) As UANodeId
'Usage
 
Dim s As String
Dim defaultNamespaceUriString As String
Dim value As UANodeId
 
value = UANodeId.Parse(s, defaultNamespaceUriString)
[NotNull()]
public static UANodeId Parse( 
   string s,
   string defaultNamespaceUriString
)
[NotNull()]
public:
static UANodeId^ Parse( 
   String^ s,
   String^ defaultNamespaceUriString
) 

Parameters

s
Expanded text of the node Id.
defaultNamespaceUriString
The default namespace to be used if no namespace is specified in the input string.

Return Value

Returns the OPC-UA node Id object parsed from the input value.
Exceptions
ExceptionDescription

A null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

The string format of the OPC-UA node ID is incorrect.
Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also