ComponentOne List for WinForms
C1.Win.List.Util.Xml.Serialization Namespace / Serializer Class / Deserialize Method / Deserialize(XmlTextReader,Object,Type,Type) Method
The XmlReader containing the XML-document instance to deserialize
The Object being deserialized
The type of object being deserialized
The type of array elements (in case the object is an array)

In This Topic
    Deserialize(XmlTextReader,Object,Type,Type) Method
    In This Topic
    Deserializes object
    Syntax
    'Declaration
     
    
    Public Overloads Function Deserialize( _
       ByVal reader As XmlTextReader, _
       ByVal o As Object, _
       ByVal type As Type, _
       ByVal elementType As Type _
    ) As Object
    public object Deserialize( 
       XmlTextReader reader,
       object o,
       Type type,
       Type elementType
    )

    Parameters

    reader
    The XmlReader containing the XML-document instance to deserialize
    o
    The Object being deserialized
    type
    The type of object being deserialized
    elementType
    The type of array elements (in case the object is an array)

    Return Value

    The Object being deserialized
    See Also