[This is preliminary documentation and is subject to change.]

Convert an xml string to an object

Namespace:  Emgu.Util
Assembly:  Emgu.Util (in Emgu.Util.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static T XmlStringDeserialize<T>(
	string xmlString
)
Public Shared Function XmlStringDeserialize(Of T) ( _
	xmlString As String _
) As T
public:
generic<typename T>
static T XmlStringDeserialize(
	String^ xmlString
)

Parameters

xmlString
String
The xml document as a string

Type Parameters

T
The type of the object to be converted to

Return Value

The object representation as a result of the deserialization of the xml string

See Also