[]
        
(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)
Public Function Deserialize(stream As Stream, type As Type) As Object
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(XmlReader, Type)

Deserializes an XML-document instance

Declaration
public object Deserialize(XmlReader reader, Type type)
Public Function Deserialize(reader As XmlReader, type As Type) As Object
Parameters
Type Name Description
XmlReader 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(XmlReader, object, Type, Type)

Deserializes object

Declaration
public object Deserialize(XmlReader reader, object o, Type type, Type elementType)
Public Function Deserialize(reader As XmlReader, o As Object, type As Type, elementType As Type) As Object
Parameters
Type Name Description
XmlReader 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)
Public Function Deserialize(XMLString As String, type As Type) As Object
Parameters
Type Name Description
string XMLString
Type type
Returns
Type Description
object