'Declaration
<CanBeNullAttribute()> <ContractAnnotationAttribute("null => null; notnull => notnull")> Overloads Public Operator Widening CType( _ ByVal nodeElement As UANodeElement _ ) As UANodeDescriptor
'Usage
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public UANodeDescriptor operator implicit( UANodeElement nodeElement )
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public: operator UANodeDescriptor^ ( UANodeElement^ nodeElement )
Parameters
- nodeElement
- The node element to be converted.
Return Value
For a non-null input, returns the node descriptor converted from the give node element. Returns
null
if the input is null
.