OPC Studio User's Guide and Reference
ParseQualifiedName Method



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.DataAccess Namespace > DAPropertyDescriptor Class : ParseQualifiedName Method
The qualified name string for an OPC-DA property, with or without a namespace.

The value of this parameter cannot be null (Nothing in Visual Basic).

Parses a string representing an XML qualified name of OPC-DA property (used with OPC XML).
Syntax
'Declaration
 
<NotNullAttribute()>
Public Shared Function ParseQualifiedName( _
   ByVal s As String _
) As XmlQualifiedName2
'Usage
 
Dim s As String
Dim value As XmlQualifiedName2
 
value = DAPropertyDescriptor.ParseQualifiedName(s)
[NotNull()]
public static XmlQualifiedName2 ParseQualifiedName( 
   string s
)
[NotNull()]
public:
static XmlQualifiedName2^ ParseQualifiedName( 
   String^ s
) 

Parameters

s
The qualified name string for an OPC-DA property, with or without a namespace.

The value of this parameter cannot be null (Nothing in Visual Basic).

Return Value

The XML qualified name parsed from the string.

This method never returns null (Nothing in Visual Basic).

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