ToolboxXmlDeserializeT Method (XDocument) |
http://www.emgu.com
Convert an xml document to an object
Namespace:
Emgu.Util
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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