XmlSerializerDeserializeSafe(Stream, IEnumerableType) Method
Namespace: KGySoft.Serialization.XmlAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
public static Object? DeserializeSafe(
Stream stream,
IEnumerable<Type>? expectedCustomTypes
)
Public Shared Function DeserializeSafe (
stream As Stream,
expectedCustomTypes As IEnumerable(Of Type)
) As Object
public:
static Object^ DeserializeSafe(
Stream^ stream,
IEnumerable<Type^>^ expectedCustomTypes
)
static member DeserializeSafe :
stream : Stream *
expectedCustomTypes : IEnumerable<Type> -> Object
- stream Stream
- A Stream object to be used for the deserialization. The stream is not closed after the deserialization.
- expectedCustomTypes IEnumerableType
- 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 can be .
ObjectThe deserialized object.