XmlSerializerDeserialize(XElement) Method
Deserializes an XML content to an object using a lower-level safe mode. Though it allows resolving types found in the XML content
without requiring to enlist them as expected types, it denies loading new assemblies during deserialization,
even if types are stored with their assembly qualified names.
Works for the results of the
Serialize(Object, XmlSerializationOptions) method.
Namespace: KGySoft.Serialization.XmlAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.5.0
public static Object? Deserialize(
XElement content
)
Public Shared Function Deserialize (
content As XElement
) As Object
public:
static Object^ Deserialize(
XElement^ content
)
static member Deserialize :
content : XElement -> Object
- content XElement
- XML content of the object.
ObjectThe deserialized object.