Opc.Ua.Core
ParseExtension<T> Method (Utils)



Opc.Ua Namespace > Utils Class : ParseExtension<T> Method
The type of extension.
The list of extensions to search.
Name of the element (use type name if null).
Looks for an extension with the specified type and uses the DataContractSerializer to parse it.
Syntax
'Declaration
 
Public Shared Function ParseExtension(Of T)( _
   ByVal extensions As IList(Of XmlElement), _
   ByVal elementName As XmlQualifiedName _
) As T
'Usage
 
Dim extensions As IList(Of XmlElement)
Dim elementName As XmlQualifiedName
Dim value As T
 
value = Utils.ParseExtension(Of T)(extensions, elementName)
public static T ParseExtension<T>( 
   IList<XmlElement> extensions,
   XmlQualifiedName elementName
)
public:
static T^ ParseExtensiongeneric<typename T>
( 
   IList<XmlElement^>^ extensions,
   XmlQualifiedName^ elementName
) 

Parameters

extensions
The list of extensions to search.
elementName
Name of the element (use type name if null).

Type Parameters

T
The type of extension.

Return Value

The deserialized extension. Null if an error occurs.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Utils Class
Utils Members