OPC Studio User's Guide and Reference
Implicit Type Conversion Operator (UABrowsePathElementCollection)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Navigation Namespace > UABrowsePathElementCollection Class : Implicit Type Conversion Operator
Contains a sequence of qualified names.

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

The individual elements of the parameter value cannot be null (Nothing in Visual Basic).

Converts a OpcLabs.EasyOpc.UA.AddressSpace.UAQualifiedNameCollection, a sequence of target names, to a UABrowsePathElementCollection object, specifying any hierarchical forward reference.
Syntax
'Declaration
 
<CanBeNullAttribute()>
<ContractAnnotationAttribute("null => null; notnull => notnull")>
Public Operator Widening CType( _
   ByVal qualifiedNames As UAQualifiedNameCollection _
) As UABrowsePathElementCollection
'Usage
 
[CanBeNull()]
[ContractAnnotation("null => null; notnull => notnull")]
public UABrowsePathElementCollection operator implicit( 
   UAQualifiedNameCollection qualifiedNames
)
[CanBeNull()]
[ContractAnnotation("null => null; notnull => notnull")]
public:
operator UABrowsePathElementCollection^ ( 
   UAQualifiedNameCollection^ qualifiedNames
)

Parameters

qualifiedNames
Contains a sequence of qualified names.

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

The individual elements of the parameter value cannot be null (Nothing in Visual Basic).

Return Value

When the input arguments is a null reference, returns a null reference. Otherwise, returns a UABrowsePathElementCollection converted from the input argument.

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

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

Remarks

This operator is equivalent to FromUAQualifiedNameCollection.

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