OPC Studio User's Guide and Reference
FromHostElement Method



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.Network Namespace > ComputerElement Class : FromHostElement Method
The host element to be converted.

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

Creates a computer element that corresponds to a given host element.
Syntax
'Declaration
 
<NotNullAttribute()>
Public Shared Function FromHostElement( _
   ByVal hostElement As HostElement _
) As ComputerElement
'Usage
 
Dim hostElement As HostElement
Dim value As ComputerElement
 
value = ComputerElement.FromHostElement(hostElement)
[NotNull()]
public static ComputerElement FromHostElement( 
   HostElement hostElement
)
[NotNull()]
public:
static ComputerElement^ FromHostElement( 
   HostElement^ hostElement
) 

Parameters

hostElement
The host element to be converted.

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

Return Value

If hostElement is null, returns an empty computer element. Otherwise, returns a new ComputerElement that refers to the given host.

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