XmlSerializerDeserializeSafe(XElement, IEnumerableType) Method

Deserializes an XML content to an object in safe mode.
See the Remarks section of the DeserializeSafeT(XElement, 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 Object? DeserializeSafe(
	XElement content,
	IEnumerable<Type>? expectedCustomTypes
)

Parameters

content  XElement
XML content of the object.
expectedCustomTypes  IEnumerableType
The natively not supported types that are expected to present in the XML content. If content does not contain any natively not supported types, then this parameter can be .

Return Value

Object
The deserialized object.

Exceptions

ArgumentNullExceptioncontent 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.
InvalidOperationExceptioncontent cannot be deserialized in safe mode.

See Also