QuickOPC User's Guide and Reference
Implicit Type Conversion(UAEndpointDescriptor,String) Operator



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA Namespace > UAEndpointDescriptor Class > Implicit Type Conversion Operator : Implicit Type Conversion(UAEndpointDescriptor,String) Operator
The string to be converted (a URL string of the resource).
Converts a System.String to an endpoint descriptor.
Syntax
'Declaration
 
<NotNullAttribute()>
Overloads Public Operator Widening CType( _
   ByVal endpointDescriptorString As String _
) As UAEndpointDescriptor
'Usage
 
[NotNull()]
public UAEndpointDescriptor operator implicit( 
   string endpointDescriptorString
)
[NotNull()]
public:
operator UAEndpointDescriptor^ ( 
   String^ endpointDescriptorString
)

Parameters

endpointDescriptorString
The string to be converted (a URL string of the resource).

Return Value

For a non-null input, returns the endpoint descriptor with the given URL string. Returns null if the input is null.
Remarks

A generic string is used instead of System.Uri, because in some cases, the value may not represent a real URI.

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