IAdmExchangeMailboxParameters

The IAdmExchangeMailboxParameters interface represents Exchange properties of a mailbox.

Inheritance: IAdmExchangeMailParameters

To modify Exchange properties of a mailbox, you need to create a new instance of the IAdmExchangeMailboxParameters interface. To do this, you need to call the default constructor of the AdmExchangeMailboxParameters class that implements the interface.

 How
PowerShell
[Reflection.Assembly]::LoadWithPartialName("Softerra.Adaxes.Adsi")

$mailboxParams = New-Object "Softerra.Adaxes.Adsi.Exchange.AdmExchangeMailboxParameters"
C#
using Softerra.Adaxes.Interop.Adsi;
using Softerra.Adaxes.Adsi;
using Softerra.Adaxes.Interop.Adsi.Exchange;
using Softerra.Adaxes.Interop.Adsi.PersistentObjects;
class Program
{
    static void Main(string[] args)
    {
        AdmExchangeMailboxParameters mailboxParams =
            new AdmExchangeMailboxParameters();
    }
}

Properties

Details

AutoReplyConfiguration

Gets or sets the Automatic Replies (OOF) settings for the mailbox.


AutoReplyConfigurationModificationEnabled

Gets or sets a value indicating whether the AutoReplyConfiguration property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

CalendarSettings

Gets or sets the Calendar Settings for the mailbox.


CalendarSettingsModificationEnabled

Gets or sets a value indicating whether the CalendarSettings property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

MailboxFeatures

Gets a collection of Mailbox Features for the mailbox.


MailboxRights

Gets or sets the rights to access the mailbox.


MailboxRightsModificationEnabled

Gets or sets a value indicating whether the MailboxRights property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

SharingPolicy

Gets or sets the Sharing Policy associated with the mailbox.


SharingPolicyModificationEnabled

Gets or sets a value indicating whether the SharingPolicy property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

ManagedFolderMailboxPolicy

Gets or sets the Managed Folder Mailbox Policy associated with the mailbox.


ManagedFolderMailboxPolicyModificationEnabled

Gets or sets a value indicating whether the ManagedFolderMailboxPolicy property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

RoleAssignmentPolicy

Gets or sets the Role Assignment Policy for the mailbox.


RoleAssignmentPolicyModificationEnabled

Gets or sets a value indicating whether the RoleAssignmentPolicy property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

AddressBookPolicy

Gets or sets the Address Book Policy for the mailbox.


AddressBookPolicyModificationEnabled

Gets or sets a value indicating whether the AddressBookPolicy property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

RetentionPolicy

Gets or sets the Retention Policy for the mailbox.


RetentionPolicyModificationEnabled

Gets or sets a value indicating whether the RetentionPolicy property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

StorageQuotas

Gets the mailbox Storage Quotas.


StorageDatabase

Gets the name of the mailbox database that the mailbox belongs to.

  • Type:
  • string
  • Access:
  • Read-only

UsageInfo

Gets information about mailbox usage.


Requirements

Minimum required version: 2013.1

See also