XmlSerializerDeserializeSafe(Stream) Method
Deserializes an object in safe mode using the specified
stream.
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(
Stream stream
)
Public Shared Function DeserializeSafe (
stream As Stream
) As Object
public:
static Object^ DeserializeSafe(
Stream^ stream
)
static member DeserializeSafe :
stream : Stream -> Object
- stream Stream
- A Stream object to be used for the deserialization. The stream is not closed after the deserialization.
ObjectThe deserialized object.