XmlSerializerDeserialize(String) Method

Deserializes an object from the specified file passed in the fileName parameter.

Definition

Namespace: KGySoft.Serialization.Xml
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public static Object? Deserialize(
	string fileName
)

Parameters

fileName  String
The path to the file that contains the serialized content.

Return Value

Object
The deserialized object.

Exceptions

ArgumentNullExceptionfileName 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.
XmlExceptionAn error occurred while parsing the XML.

See Also