Serializes the given object to XML.

Namespace:  Asi.iBO
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public static string GetXml(
	Object obj,
	Type type
)
Visual Basic (Declaration)
Public Shared Function GetXml ( _
	obj As Object, _
	type As Type _
) As String
Visual C++
public:
static String^ GetXml(
	Object^ obj, 
	Type^ type
)

Parameters

obj
Type: System..::.Object
The object to be serialized.
type
Type: System..::.Type
The type of the object being serialized.

Return Value

The serialized XML, as a string.

See Also