XmlSerializerDeserialize(XmlReader) Method

Deserializes an object with the provided XmlReader in the reader parameter, using a lower-level safe mode. Though it allows resolving types found in the XML content without requiring to enlist them as expected types, it denies loading new assemblies during deserialization, even if types are stored with their assembly qualified names.

Definition

Namespace: KGySoft.Serialization.Xml
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.5.0
C#
public static Object? Deserialize(
	XmlReader reader
)

Parameters

reader  XmlReader
An XmlReader object to be used for the deserialization.

Return Value

Object
The deserialized object.

Remarks

  Note

The reader position must be before the content to deserialize.

Exceptions

ArgumentNullExceptionreader must not be .
NotSupportedExceptionDeserializing an inner type is not supported.
ReflectionExceptionAn inner type cannot be instantiated or serialized XML content is corrupt.
ArgumentExceptionXML content is inconsistent or corrupt.
XmlExceptionAn error occurred while parsing the XML.
InvalidOperationExceptionXML content cannot be deserialized in safe mode.

See Also