Convert an object to an xml document

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static XmlDocument XmlSerialize<T>(
	T o
)
Public Shared Function XmlSerialize(Of T) ( _
	o As T _
) As XmlDocument
public:
generic<typename T>
static XmlDocument^ XmlSerialize(
	T o
)

Parameters

o
T
The object to be serialized

Type Parameters

T
The type of the object to be converted

Return Value

An xml document that represents the object

See Also