[]
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 |
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, object instantiatedObject)
Public Shared Function CreateObjectInstanceAndDeserialize(r As XmlNodeReader, type As Type, saveInterface As Type, callingAssembly As Assembly, instantiatedObject As Object) 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 |
object | instantiatedObject | The instantiated object which will receive deserialized data. |
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, object instantiatedObject)
Public Shared Function CreateObjectInstanceAndDeserialize(r As XmlNodeReader, type As Type, saveInterface As Type, instantiatedObject As Object) 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 |
object | instantiatedObject | The instantiated object which will receive deserialized data. |
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, Assembly callingAssembly, object instantiatedObject, IDeserializeInjector injector)
Public Shared Function CreateObjectInstanceAndDeserialize(r As XmlNodeReader, type As Type, saveInterface As Type, callingAssembly As Assembly, instantiatedObject As Object, injector As IDeserializeInjector) 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 |
Assembly | callingAssembly | Calling assembly object |
object | instantiatedObject | The instantiated object which will receive deserialized data. |
IDeserializeInjector | injector | The injector that support inject setting for deserializing object right after create instance and before deserializing |
Type | Description |
---|---|
object | Deserialized object |