XmlSerializerDeserializeSafe(XElement, Type) Method
Namespace: KGySoft.Serialization.XmlAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
public static Object? DeserializeSafe(
XElement content,
params Type[]? expectedCustomTypes
)
Public Shared Function DeserializeSafe (
content As XElement,
ParamArray expectedCustomTypes As Type()
) As Object
public:
static Object^ DeserializeSafe(
XElement^ content,
... array<Type^>^ expectedCustomTypes
)
static member DeserializeSafe :
content : XElement *
expectedCustomTypes : Type[] -> Object
- content XElement
- XML content of the object.
- expectedCustomTypes Type
- 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 is optional.
ObjectThe deserialized object.