Instantiates an object from its serialized XML representation.

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

Syntax

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

Parameters

xml
Type: System..::.String
The XML source for the object.
type
Type: System..::.Type
The type of the object being restored.

Return Value

The restored object.

See Also