XmlSerializerDeserializeContentSafe(XmlReader, Object) Method
Restores the inner state of an already created object passed in the
obj parameter based on a saved XML.
If the serialization stream contains names of natively not supported types, then you should use
the other overloads to specify the expected types.
See the
Remarks section of the
DeserializeContentSafe(XmlReader, Object, Type) overload for details.
Namespace: KGySoft.Serialization.XmlAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
public static void DeserializeContentSafe(
XmlReader reader,
Object obj
)
Public Shared Sub DeserializeContentSafe (
reader As XmlReader,
obj As Object
)
public:
static void DeserializeContentSafe(
XmlReader^ reader,
Object^ obj
)
static member DeserializeContentSafe :
reader : XmlReader *
obj : Object -> unit
Parameters
- reader XmlReader
- An XmlReader instance to be used to read the XML content. The reader must be at the correct position for a successful deserialization.
- obj Object
- The already constructed object whose inner state has to be deserialized.