OPC Studio User's Guide and Reference
Explicit Type Conversion Operator (UAAttributePoint)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Connectivity Namespace > UAAttributePoint Class : Explicit Type Conversion Operator
The attribute point to be converted.

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

Converts attribute point to corresponding attribute arguments.
Syntax
'Declaration
 
<CanBeNullAttribute()>
<ContractAnnotationAttribute("null => null; notnull => notnull")>
Public Operator Narrowing CType( _
   ByVal attributePoint As UAAttributePoint _
) As UAAttributeArguments
'Usage
 
[CanBeNull()]
[ContractAnnotation("null => null; notnull => notnull")]
public UAAttributeArguments operator explicit( 
   UAAttributePoint attributePoint
)
[CanBeNull()]
[ContractAnnotation("null => null; notnull => notnull")]
public:
UAAttributeArguments^ operator explicit( 
   UAAttributePoint^ attributePoint
)

Parameters

attributePoint
The attribute point to be converted.

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

Return Value

The attribute arguments that correspond to the attribute point. null if the attribute point passed in was null.

This method can return 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