Interface IDataContractSerializerService<T>
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Interface for service serializing / deserializing objects from / to XML using System.Runtime.Serialization.DataContractSerializer.
public interface IDataContractSerializerService<T>
Type Parameters
T
Type of object to serialize / deserialize.
- Extension Methods
Methods
Deserialize(string)
Deserializes XML string to object instance.
T Deserialize(string xml)
Parameters
xml
stringInput XML text for deserialization.
Returns
- T
Deserialized object instance from
xml
string representation.
Exceptions
- ArgumentNullException
Thrown when
xml
isnull
.- SerializationException
Thrown when deserialization from input
xml
failed.
Serialize(T, XmlWriterSettings)
Serializes object instance to XML string representation.
string Serialize(T obj, XmlWriterSettings settings = null)
Parameters
obj
TInput object for serialization.
settings
XmlWriterSettingsSettings used for System.Xml.XmlWriter. If this is
null
, default settings are used.
Returns
- string
Serialized object
obj
to XML string representation.
Exceptions
- ArgumentNullException
Thrown when
obj
isnull
.