IAdmExchangeMailboxCalendarSettings

The IAdmExchangeMailboxCalendarSettings interface represents Calendar Settings of an exchange mailbox.

Inheritance: IUnknown

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

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

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

Properties

  • Property

  • Description

  • AddNewRequestsTentatively

  • Gets or sets a value indicating whether the Calendar Attendant should mark all new meeting requests as Tentative.

  • AutomateProcessing

  • Gets or sets a value that enables or disables calendar processing on the mailbox.

  • ProcessExternalMeetingMessages

  • Gets or sets a value indicating whether the Calendar Attendant should process meeting requests and responses originating outside the Exchange organization.

  • RemoveForwardedMeetingNotifications

  • Gets or sets a value indicating whether meeting forwarding notifications are moved to the Deleted Items folder after being processed by the Calendar Attendant.

  • RemoveOldMeetingMessages

  • Gets or sets a value indicating whether the Calendar Attendant should remove old meeting requests and responses.

Details

AddNewRequestsTentatively

Gets or sets a value indicating whether the Calendar Attendant should mark all new meeting requests as Tentative.

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

AutomateProcessing

Gets or sets a value that enables or disables calendar processing on the mailbox.


ProcessExternalMeetingMessages

Gets or sets a value indicating whether the Calendar Attendant should process meeting requests and responses originating outside the Exchange organization.

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

RemoveForwardedMeetingNotifications

Gets or sets a value indicating whether meeting forwarding notifications are moved to the Deleted Items folder after being processed by the Calendar Attendant.

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

RemoveOldMeetingMessages

Gets or sets a value indicating whether the Calendar Attendant should remove old meeting requests and responses.

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

Requirements

Minimum required version: 2013.1

See also