Table of Contents

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

objXml string

Xml string representation of the serialized object.

Returns

T

Deserialized object.

Type Parameters

T

Type of the object.

Serialize<T>(T)

Serialization of the object.

public static string Serialize<T>(T objT)

Parameters

objT T

Serialized object.

Returns

string

XML string.

Type Parameters

T

Type of the object.

To top