Convert an xml document to an object
Namespace:
Emgu.Util
Assembly:
Emgu.Util (in Emgu.Util.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
C# |
---|
public static T XmlDeserialize<T>(
XmlDocument xDoc
)
|
Visual Basic (Declaration) |
---|
Public Shared Function XmlDeserialize(Of T) ( _
xDoc As XmlDocument _
) As T |
Visual C++ |
---|
public:
generic<typename T>
static T XmlDeserialize(
XmlDocument^ xDoc
) |
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 document
See Also