Table of Contents

Class ContactChangeData

Namespace
CMS.ContactManagement
Assembly
CMS.ContactManagement.dll

Container for the contact change data.

[Obsolete("Class was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(29, 0)]
public class ContactChangeData
Inheritance
object
ContactChangeData
Extension Methods

Remarks

This API supports the framework infrastructure and is not intended to be used directly from your code.

Constructors

ContactChangeData()

Creates new instance of ContactChangeData.

public ContactChangeData()

ContactChangeData(IDataContainer)

Creates new instance of ContactChangeData and set up its properties from given dataRowContainer.

public ContactChangeData(IDataContainer dataRowContainer)

Parameters

dataRowContainer IDataContainer

Data row container containing the data used for creating the ContactChangeData

Exceptions

ArgumentNullException

dataRowContainer is null

Properties

ChangedColumns

List of columns which have changed. Is null when ContactIsNew is true.

public IList<string> ChangedColumns { get; set; }

Property Value

IList<string>

ContactID

Contact ID.

public int ContactID { get; set; }

Property Value

int

ContactIsNew

If true the change represents a new contact creation. ChangedColumns are not included if contact is new.

public bool ContactIsNew { get; set; }

Property Value

bool

ContactWasMerged

Gets or sets the value indicating if the contact was automatically merged.

public bool ContactWasMerged { get; set; }

Property Value

bool

Methods

Equals(object)

Returns true if the object equals to another.

public override bool Equals(object obj)

Parameters

obj object

Object to compare to

Returns

bool

FillDataContainer(IDataContainer)

Fills given dataContainer with values from current ContactChangeData.

public void FillDataContainer(IDataContainer dataContainer)

Parameters

dataContainer IDataContainer

Data container to be filled

Exceptions

ArgumentNullException

dataContainer is null

GetHashCode()

Gets the object hash code

public override int GetHashCode()

Returns

int

ToString()

Returns the string representation of the object.

public override string ToString()

Returns

string