Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Serializer Class / DeserializeObj Method
The deserialized type.
The XmlReader with which to access the data.


In This Topic
    DeserializeObj Method
    In This Topic
    Deserializes the current node of the XmlReader as an object of the specified type.
    Syntax
    'Declaration
     
    Public Shared Function DeserializeObj( _
       ByVal type As Type, _
       ByVal reader As XmlReader _
    ) As Object
    'Usage
     
    Dim type As Type
    Dim reader As XmlReader
    Dim value As Object
     
    value = Serializer.DeserializeObj(type, reader)
    public static object DeserializeObj( 
       Type type,
       XmlReader reader
    )

    Parameters

    type
    The deserialized type.
    reader
    The XmlReader with which to access the data.

    Return Value

    The deserialized object.
    See Also