XmlSerializerDeserializeSafe(TextReader) Method

Deserializes an object in safe mode using the provided TextReader in the reader parameter. 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 DeserializeSafeT(XmlReader, Type) overload for details.

Definition

Namespace: KGySoft.Serialization.Xml
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public static Object? DeserializeSafe(
	TextReader reader
)

Parameters

reader  TextReader
A TextReader object to be used for the deserialization. The reader is not closed after the deserialization.

Return Value

Object
The deserialized object.

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