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



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib Namespace > ResourceDescriptor Class > Implicit Type Conversion Operator : Implicit Type Conversion(ResourceDescriptor,String) Operator
The string to be converted.
Converts a System.String to a resource descriptor.
Syntax
'Declaration
 
<NotNullAttribute()>
Overloads Public Operator Widening CType( _
   ByVal descriptorString As String _
) As ResourceDescriptor
'Usage
 
[NotNull()]
public ResourceDescriptor operator implicit( 
   string descriptorString
)
[NotNull()]
public:
operator ResourceDescriptor^ ( 
   String^ descriptorString
)

Parameters

descriptorString
The string to be converted.

Return Value

For a non-null input, returns the resource 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