OPC Studio User's Guide and Reference
MakePathElements Method (AENodeElement)



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.AlarmsAndEvents.AddressSpace Namespace > AENodeElement Class : MakePathElements Method
The browse names that represent the path to be created.

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

Creates a path containing AENodeElement-s made from browse names, starting from the root.
Syntax
'Declaration
 
<NotNullAttribute()>
Public Shared Function MakePathElements( _
   ByVal browseNames As IEnumerable(Of String) _
) As IEnumerable(Of AENodeElement)
'Usage
 
Dim browseNames As IEnumerable(Of String)
Dim value As IEnumerable(Of AENodeElement)
 
value = AENodeElement.MakePathElements(browseNames)
[NotNull()]
public static IEnumerable<AENodeElement> MakePathElements( 
   IEnumerable<string> browseNames
)
[NotNull()]
public:
static IEnumerable<AENodeElement^>^ MakePathElements( 
   IEnumerable<String^>^ browseNames
) 

Parameters

browseNames
The browse names that represent the path to be created.

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

Return Value

An "enumerable" of node elements, starting from the root.

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