Class ArchiveRestrictionGroup
This class carries information about a group of restrictions
Inherited Members
Namespace: SuperOffice.CRM.ArchiveLists
Assembly: SoCore.dll
Syntax
public class ArchiveRestrictionGroup
Constructors
ArchiveRestrictionGroup()
Construct the object with a blank name and rank 0
Declaration
public ArchiveRestrictionGroup()
ArchiveRestrictionGroup(String)
Construct the object with the given name and rank 0
Declaration
public ArchiveRestrictionGroup(string name)
Parameters
Type | Name | Description |
---|---|---|
String | name | Name of the group |
ArchiveRestrictionGroup(String, Int16)
Construct the object with the given name and rank
Declaration
public ArchiveRestrictionGroup(string name, short rank)
Parameters
Type | Name | Description |
---|---|---|
String | name | Name of the group |
Int16 | rank | Rank of group |
Properties
Description
Description of the group
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
Name
Name of the group
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
Rank
Rank of group among groups
Declaration
public short Rank { get; set; }
Property Value
Type | Description |
---|---|
Int16 |
Restrictions
Declaration
public ArchiveRestrictionInfo[] Restrictions { get; set; }
Property Value
Type | Description |
---|---|
ArchiveRestrictionInfo[] |
Methods
ToString()
Convert this instance to a string for debug display
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String |
Overrides
ToString(String)
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix |
Returns
Type | Description |
---|---|
String |
Extension Methods
EnumUtil.MapEnums<From, To>(From)