QuickOPC User's Guide and Reference
Parse(IUANodeIdParser,String,Boolean) Method



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.AddressSpace.Parsing.Extensions Namespace > IUANodeIdParserExtension Class > Parse Method : Parse(IUANodeIdParser,String,Boolean) Method
The OPC-UA node Id parser.
Expanded text of the node Id.
Determines whether the node Id must contain a namespace or namespace index.
Parses a string containing an OPC-UA node Id (its expanded text), and returns a corresponding node Id object.
Syntax
'Declaration
 
<ExtensionAttribute()>
<NotNullAttribute()>
Public Overloads Shared Function Parse( _
   ByVal nodeIdParser As IUANodeIdParser, _
   ByVal s As String, _
   ByVal requireNamespace As Boolean _
) As UANodeId
'Usage
 
Dim nodeIdParser As IUANodeIdParser
Dim s As String
Dim requireNamespace As Boolean
Dim value As UANodeId
 
value = IUANodeIdParserExtension.Parse(nodeIdParser, s, requireNamespace)
[Extension()]
[NotNull()]
public static UANodeId Parse( 
   IUANodeIdParser nodeIdParser,
   string s,
   bool requireNamespace
)
[Extension()]
[NotNull()]
public:
static UANodeId^ Parse( 
   IUANodeIdParser^ nodeIdParser,
   String^ s,
   bool requireNamespace
) 

Parameters

nodeIdParser
The OPC-UA node Id parser.
s
Expanded text of the node Id.
requireNamespace
Determines whether the node Id must contain a namespace or namespace index.

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