'Declaration
<CanBeNullAttribute()> <ContractAnnotationAttribute("null => null; notnull => notnull")> Public Shared Function FromString( _ ByVal nodeIdExpandedText As String _ ) As UANodeDescriptor
'Usage
Dim nodeIdExpandedText As String Dim value As UANodeDescriptor value = UANodeDescriptor.FromString(nodeIdExpandedText)
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public static UANodeDescriptor FromString( string nodeIdExpandedText )
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public: static UANodeDescriptor^ FromString( String^ nodeIdExpandedText )
Parameters
- nodeIdExpandedText
- An node Id expanded text (contains namespace URI, and namespace-relative node Id).
Return Value
For a non-null input, returns the node descriptor with the given node Id expanded text. Returns
null
if the input is null
.