IAdmExchangeEnableUMMailboxParams

The IAdmExchangeEnableUMMailboxParams interface specifies parameters to be used when enabling the Unified Messaging mailbox feature.

Inheritance: IUnknown

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

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

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

Methods

Properties

  • Property

  • Description

  • Policy

  • Gets or sets a UM mailbox policy to be associated with the mailbox.

  • Pin

  • Gets or sets the UM PIN.

  • PinExpired

  • Gets or sets a value that indicates whether the new PIN will be expired.

  • ExtensionAutoGenerationEnabled

  • Gets or sets a value indicating whether the UM extension must be generated automatically.

  • Extension

  • Gets or sets an extension number for the mailbox.

  • SipResourceIdentifier

  • Gets or sets a SIP URI associated with the mailbox.

  • E164Address

  • Gets or sets a E.164 address for the mailbox.

Details

Clone()

Clones the current instance of the interface.

IAdmExchangeEnableUMMailboxParams Clone()

GenerateDefaultExtension()

Generates a default UM extension for the specified mailbox.

string GenerateDefaultExtension(IAdmTop object, int extensionLength)

Parameters

  • object - Specifies the user for whom the extension will be generated.
  • extensionLength - Specifies the extension length.

Policy

Gets or sets a UM mailbox policy to be associated with the mailbox.


Pin

Gets or sets the UM PIN. If the PIN is not specified, it will be generated automatically.

  • Type:
  • string
  • Access:
  • Read/Write

PinExpired

Gets or sets a value that indicates whether the new PIN will be expired. If the PIN is expired, the user is required to reset their PIN the first time they sign in.

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

ExtensionAutoGenerationEnabled

Gets or sets a value indicating whether the UM extension must be generated automatically.

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

Extension

Gets or sets an extension number for the mailbox.

  • Type:
  • string
  • Access:
  • Read/Write

SipResourceIdentifier

Gets or sets a SIP URI associated with the mailbox.

  • Type:
  • string
  • Access:
  • Read/Write

E164Address

Gets or sets a E.164 address for the mailbox.

  • Type:
  • string
  • Access:
  • Read/Write

Requirements

Minimum required version: 2013.1

See also