Class ExchangePublicFolderLimits
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the limits of a public folder configured in a Microsoft Exchange organization.
public class ExchangePublicFolderLimits : BaseTypeSection
- Inheritance
-
ExchangePublicFolderLimits
Constructors
ExchangePublicFolderLimits()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.ExchangePublicFolderLimits class.
public ExchangePublicFolderLimits()
Properties
AgeLimit
Gets or sets the age limit for folder contents in days.
public int AgeLimit { get; set; }
Property Value
IssueWarningQuota
Gets or sets the size in bytes at which to issue a warning. A value of UInt64.MaxValue represents unlimited.
public ulong IssueWarningQuota { get; set; }
Property Value
IssueWarningQuotaString
Gets the size at which to issue a warning.
public string IssueWarningQuotaString { get; set; }
Property Value
MaxItemSize
Gets or sets the maximum size of in bytes. A value of UInt64.MaxValue represents unlimited.
public ulong MaxItemSize { get; set; }
Property Value
MaxItemSizeString
Gets the maximum item size.
public string MaxItemSizeString { get; set; }
Property Value
ProhibitPostQuota
Gets or sets the size in bytes at which to prohibit posting. A value of UInt64.MaxValue represents unlimited.
public ulong ProhibitPostQuota { get; set; }
Property Value
ProhibitPostQuotaString
Gets the size at which to prohibit posting.
public string ProhibitPostQuotaString { get; set; }
Property Value
RetainDeletedItemsFor
Gets or sets the number of days to retain deleted items for.
public int RetainDeletedItemsFor { get; set; }
Property Value
UseOrganizationAgeLimitDefaults
Gets or sets whether to use the organization age limit defaults.
public BooleanOption UseOrganizationAgeLimitDefaults { get; set; }
Property Value
UseOrganizationQuotaDefaults
Gets or sets whether to use the organization quota defaults.
public BooleanOption UseOrganizationQuotaDefaults { get; set; }
Property Value
UseOrganizationRetentionDefaults
Gets or sets whether to use the organization retention defaults.
public BooleanOption UseOrganizationRetentionDefaults { get; set; }
Property Value
Methods
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.ExchangePublicFolderLimits class from the specified XML.
public static ExchangePublicFolderLimits FromXml(string xml)
Parameters
xml
stringThe XML representation of the object.
Returns
- ExchangePublicFolderLimits
A CENTREL.XIA.Configuration.Types.ExchangePublicFolderLimits class.