Deserializes xml.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static Object Deserialize(
	Type objectType,
	string xml
)
Visual Basic
Public Shared Function Deserialize ( 
	objectType As Type,
	xml As String
) As Object
Visual C++
public:
static Object^ Deserialize(
	Type^ objectType, 
	String^ xml
)
F#
static member Deserialize : 
        objectType : Type * 
        xml : string -> Object 

Parameters

objectType
Type: System..::..Type
Deserialization object type
xml
Type: System..::..String
Serialized object xml

Return Value

Type: Object
Deserialized object

See Also