XmlSerializerDeserializeSafeT(XElement, IEnumerableType) Method
Namespace: KGySoft.Serialization.XmlAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
public static T DeserializeSafe<T>(
XElement content,
IEnumerable<Type>? expectedCustomTypes
)
Public Shared Function DeserializeSafe(Of T) (
content As XElement,
expectedCustomTypes As IEnumerable(Of Type)
) As T
public:
generic<typename T>
static T DeserializeSafe(
XElement^ content,
IEnumerable<Type^>^ expectedCustomTypes
)
static member DeserializeSafe :
content : XElement *
expectedCustomTypes : IEnumerable<Type> -> 'T
- 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 .
- T
- The expected type of the result.
TThe deserialized instance of
T.