Class CriteriaGroup
Carrier for criteria group. It contains all the search criteria for the group - that is, ArchiveRestrictionInfo - objects, including some info like rank and name
Carrier object for CriteriaGroup. Services for the CriteriaGroup Carrier is available from the Find Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class CriteriaGroup : Carrier
Constructors
CriteriaGroup()
Default constructor
Declaration
public CriteriaGroup()
See Also
Properties
Name
The name of this criteria group
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Rank
Rank order within this CriteriaModel
Declaration
[DataMember]
public virtual short Rank { get; set; }
Property Value
Type | Description |
---|---|
short |
See Also
Restrictions
Array of ArchiveRestrictionInfo restriction specifications
Declaration
[DataMember]
public virtual ArchiveRestrictionInfo[] Restrictions { get; set; }
Property Value
Type | Description |
---|---|
ArchiveRestrictionInfo[] |
See Also
SearchCriteriaGroupId
Primary key
Declaration
[DataMember]
public virtual int SearchCriteriaGroupId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
See Also
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. |