[]
        
(Showing Draft Content)

C1.Win.TrueDBGrid.Util.Xml.Serialization.Serializer.Deserialize

Deserialize Method

Deserialize(Stream, Type)

Deserializes an XML-document instance

Declaration
public object Deserialize(Stream stream, Type type)
Parameters
Type Name Description
Stream stream

The Stream containing the XML-document instance to deserialize

Type type

The type of object being deserialized

Returns
Type Description
object

The Object being deserialized

Deserialize(XmlTextReader, Type)

Deserializes an XML-document instance

Declaration
public object Deserialize(XmlTextReader reader, Type type)
Parameters
Type Name Description
XmlTextReader reader

The XmlReader containing the XML-document instance to deserialize

Type type

The type of object being deserialized

Returns
Type Description
object

The Object being deserialized

Deserialize(XmlTextReader, object, Type, Type)

Deserializes object

Declaration
public object Deserialize(XmlTextReader reader, object o, Type type, Type elementType)
Parameters
Type Name Description
XmlTextReader reader

The XmlReader containing the XML-document instance to deserialize

object o

The Object being deserialized

Type type

The type of object being deserialized

Type elementType

The type of array elements (in case the object is an array)

Returns
Type Description
object

The Object being deserialized

Deserialize(string, Type)

Deserializes an XML document string

Declaration
public object Deserialize(string XMLString, Type type)
Parameters
Type Name Description
string XMLString
Type type
Returns
Type Description
object