ToolboxXmlDeserializeT Method (XDocument) |
http://www.emgu.com
Convert an xml document to an object
Namespace: Emgu.UtilAssembly: Emgu.Util (in Emgu.Util.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static T XmlDeserialize<T>(
XDocument document
)
Public Shared Function XmlDeserialize(Of T) (
document As XDocument
) As T
public:
generic<typename T>
static T XmlDeserialize(
XDocument^ document
)
static member XmlDeserialize :
document : XDocument -> 'T
Parameters
- document
- Type: System.Xml.LinqXDocument
The xml document
Type Parameters
- T
- The type of the object to be converted to
Return Value
Type:
TThe object representation as a result of the deserialization of the xml document
See Also