XmlSerializerDeserializeUnsafe(TextReader) Method

Deserializes an object in unsafe mode, using the provided TextReader in the reader parameter. Use it only if the XML content is from a safe source.
See the security notes at the Remarks section of the XmlSerializer class for details.

Definition

Namespace: KGySoft.Serialization.Xml
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.5.0
C#
public static Object? DeserializeUnsafe(
	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.

See Also