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.
Namespace: KGySoft.Serialization.XmlAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
public static Object? DeserializeSafe(
TextReader reader
)
Public Shared Function DeserializeSafe (
reader As TextReader
) As Object
public:
static Object^ DeserializeSafe(
TextReader^ reader
)
static member DeserializeSafe :
reader : TextReader -> Object
- reader TextReader
- A TextReader object to be used for the deserialization. The reader is not closed after the deserialization.
ObjectThe deserialized object.