IAdmExchangeEnableArchiveMailboxParams

The IAdmExchangeEnableArchiveMailboxParams interface specifies parameters to be used when enabling the Archiving mailbox feature.

Inheritance: IUnknown

To create a new instance of the IAdmExchangeEnableArchiveMailboxParams interface, you need to call the default constructor of the AdmExchangeEnableArchiveMailboxParams class that implements the interface.

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

$archivingParams = New-Object `
    "Softerra.Adaxes.Adsi.Exchange.AdmExchangeEnableArchiveMailboxParams"
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)
    {
        AdmExchangeEnableArchiveMailboxParams archivingParams =
            new AdmExchangeEnableArchiveMailboxParams();
    }
}

Properties

  • Property

  • Description

  • Database

  • Gets or sets the mailbox database for the archive.

Details

Database

Gets or sets the mailbox database for the archive.


Requirements

Minimum required version: 2013.1

See also