OPC Studio User's Guide and Reference
FromUAQualifiedNameCollection Method



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Navigation Namespace > UABrowsePathElementCollection Class : FromUAQualifiedNameCollection Method

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

Converts a sequence of target names, and specifying any hierarchical forward reference, to a browse path element collection.
Syntax
'Declaration
 
<CanBeNullAttribute()>
<ContractAnnotationAttribute("null => null; notnull => notnull")>
Public Shared Function FromUAQualifiedNameCollection( _
   ByVal qualifiedNames As IEnumerable(Of UAQualifiedName) _
) As UABrowsePathElementCollection
'Usage
 
Dim qualifiedNames As IEnumerable(Of UAQualifiedName)
Dim value As UABrowsePathElementCollection
 
value = UABrowsePathElementCollection.FromUAQualifiedNameCollection(qualifiedNames)
[CanBeNull()]
[ContractAnnotation("null => null; notnull => notnull")]
public static UABrowsePathElementCollection FromUAQualifiedNameCollection( 
   IEnumerable<UAQualifiedName> qualifiedNames
)
[CanBeNull()]
[ContractAnnotation("null => null; notnull => notnull")]
public:
static UABrowsePathElementCollection^ FromUAQualifiedNameCollection( 
   IEnumerable<UAQualifiedName^>^ qualifiedNames
) 

Parameters

qualifiedNames

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

Return Value

This method can return null (Nothing in Visual Basic).

The individual elements of the returned value are never null (Nothing in Visual Basic).

Remarks

In languages that support implicit conversions (such as C# or VB.NET), in many cases you do not have call this method explicitly. When indicated, a call to an available equivalent implicit conversion operator will be created by the compiler automatically.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

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