XmlSerializerDeserialize(TextReader) Method

Deserializes an object using the provided TextReader in the reader parameter.

Definition

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