[]
Creates an object serialized into a specified XML node reader of a specified type.
public static object CreateObjectInstanceAndDeserialize(XmlNodeReader r, Type type)
Public Shared Function CreateObjectInstanceAndDeserialize(r As XmlNodeReader, type As Type) As Object
Type | Name | Description |
---|---|---|
XmlNodeReader | r | XmlNodeReader from which to read the XML |
Type | type | Type of serialization support |
Type | Description |
---|---|
object |
Creates an object serialized into a specified XML node reader of a specified type and interface.
public static object CreateObjectInstanceAndDeserialize(XmlNodeReader r, Type type, Type saveInterface)
Public Shared Function CreateObjectInstanceAndDeserialize(r As XmlNodeReader, type As Type, saveInterface As Type) As Object
Type | Name | Description |
---|---|---|
XmlNodeReader | r | XmlNodeReader from which to read the XML |
Type | type | Type of serialization support |
Type | saveInterface | Serialization interface to use |
Type | Description |
---|---|
object |
Creates an object serialized into a specified XML node reader of a specified type, interface, and calling assembly.
public static object CreateObjectInstanceAndDeserialize(XmlNodeReader r, Type type, Type saveInterface, Assembly callingAssembly)
Public Shared Function CreateObjectInstanceAndDeserialize(r As XmlNodeReader, type As Type, saveInterface As Type, callingAssembly As Assembly) As Object
Type | Name | Description |
---|---|---|
XmlNodeReader | r | XmlNodeReader from which to read the XML |
Type | type | Type |
Type | saveInterface | Serialization interface to use |
Assembly | callingAssembly | Calling assembly object |
Type | Description |
---|---|
object |