Class XmlHelper
- Namespace
- Dynamicweb.DataIntegration.ProviderHelpers
- Assembly
- Dynamicweb.DataIntegration.dll
public class XmlHelper
- Inheritance
-
XmlHelper
- Inherited Members
Methods
Deserialize<T>(string?)
Deserialization of the object.
public static T? Deserialize<T>(string? objXml)
Parameters
objXmlstringXml string representation of the serialized object.
Returns
- T
Deserialized object.
Type Parameters
TType of the object.
Serialize<T>(T)
Serialization of the object.
public static string? Serialize<T>(T objT)
Parameters
objTTSerialized object.
Returns
- string
XML string.
Type Parameters
TType of the object.