QuickOPC User's Guide and Reference
FindStandardQualifiedName Method



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA Namespace > UAUtilities Class : FindStandardQualifiedName Method
The name for which the standard qualified name should be found.
The standard qualified name that corresponds to the given name.
Finds an OPC-UA standard qualified name for a given name.
Syntax
'Declaration
 
Public Shared Function FindStandardQualifiedName( _
   ByVal name As String, _
   ByRef standardQualifiedName As UAQualifiedName _
) As Boolean
'Usage
 
Dim name As String
Dim standardQualifiedName As UAQualifiedName
Dim value As Boolean
 
value = UAUtilities.FindStandardQualifiedName(name, standardQualifiedName)
public static bool FindStandardQualifiedName( 
   string name,
   out UAQualifiedName standardQualifiedName
)
public:
static bool FindStandardQualifiedName( 
   String^ name,
   [Out] UAQualifiedName^ standardQualifiedName
) 

Parameters

name
The name for which the standard qualified name should be found.
standardQualifiedName
The standard qualified name that corresponds to the given name.

Return Value

Returns true if the standard qualified name has been found; otherwise, returns false.
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.

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