Class DuplicateRule
Describes one duplicate rule to be used to find similar entries
Carrier object for DuplicateRule.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class DuplicateRule : Carrier
Constructors
DuplicateRule()
Default constructor
Declaration
public DuplicateRule()
Properties
DisplayName
Short name of rule to display to user
Declaration
[DataMember]
public virtual string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string |
DisplayTooltip
Description of the rule
Declaration
[DataMember]
public virtual string DisplayTooltip { get; set; }
Property Value
Type | Description |
---|---|
string |
IsActive
Indicating if a rule is current active, and should included in the duplicate detection
Declaration
[DataMember]
public virtual bool IsActive { get; set; }
Property Value
Type | Description |
---|---|
bool |
Name
Identifying name for rule
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
string | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
string | The carrier contents. |