Table of Contents

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 string

Input XML text for deserialization.

Returns

T

Deserialized object instance from xml string representation.

Exceptions

ArgumentNullException

Thrown when xml is null.

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 T

Input object for serialization.

settings XmlWriterSettings

Settings 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 is null.