XmlSerializerDeserializeSafe(TextReader, Type) Method
Namespace: KGySoft.Serialization.XmlAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
public static Object? DeserializeSafe(
TextReader reader,
params Type[]? expectedCustomTypes
)
Public Shared Function DeserializeSafe (
reader As TextReader,
ParamArray expectedCustomTypes As Type()
) As Object
public:
static Object^ DeserializeSafe(
TextReader^ reader,
... array<Type^>^ expectedCustomTypes
)
static member DeserializeSafe :
reader : TextReader *
expectedCustomTypes : Type[] -> Object
- reader TextReader
- A TextReader object to be used for the deserialization. The reader is not closed after the deserialization.
- expectedCustomTypes Type
- The natively not supported types that are expected to present in the XML data.
If the serialization stream does not contain any natively not supported types, then this parameter is optional.
ObjectThe deserialized object.