XmlSerializerDeserializeSafeT(Stream, Type) Method

Deserializes an instance of T in safe mode using the specified stream.
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: 9.0.0-preview.1
C#
public static T DeserializeSafe<T>(
	Stream stream,
	params Type[]? expectedCustomTypes
)

Parameters

stream  Stream
A Stream object to be used for the deserialization. The stream is not closed after the deserialization.
expectedCustomTypes  Type
The natively not supported types that are expected to present in the XML stream. If the serialization stream does not contain any natively not supported types, then this parameter is optional.

Type Parameters

T
The expected type of the result.

Return Value

T
The deserialized instance of T.

Exceptions

ArgumentNullExceptionstream 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.
InvalidOperationExceptionXML content cannot be deserialized in safe mode.

See Also