XmlSerializerDeserializeSafe(String, Type) Method
Deserializes an object in safe mode from the specified file passed in the
fileName parameter.
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(
string fileName,
params Type[]? expectedCustomTypes
)
Public Shared Function DeserializeSafe (
fileName As String,
ParamArray expectedCustomTypes As Type()
) As Object
public:
static Object^ DeserializeSafe(
String^ fileName,
... array<Type^>^ expectedCustomTypes
)
static member DeserializeSafe :
fileName : string *
expectedCustomTypes : Type[] -> Object
- fileName String
- The path to the file that contains the serialized content.
- 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.