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
-
objectContactChangeData
- 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
IDataContainerData row container containing the data used for creating the ContactChangeData
Exceptions
- ArgumentNullException
dataRowContainer
isnull
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
objectObject to compare to
Returns
- bool
FillDataContainer(IDataContainer)
Fills given dataContainer
with values from current ContactChangeData.
public void FillDataContainer(IDataContainer dataContainer)
Parameters
dataContainer
IDataContainerData container to be filled
Exceptions
- ArgumentNullException
dataContainer
isnull
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