IAdmExchangeMailboxFeatureCollection

The IAdmExchangeMailboxFeatureCollection interface represents a collection of mailbox features. Each feature in the collection is represented by the IAdmExchangeMailboxFeature interface.

Inheritance: IEnumerable and IAdmExchangeParametersContainer

Methods

  • Method

  • Description

  • Add()

  • Adds the specified mailbox feature to the collection.

  • Clear()

  • Removes all mailbox features from the collection.

  • Create()

  • Creates a mailbox feature of the specified type.

  • GetItemByType()

  • Gets a mailbox feature by type.

  • GetItemByIndex()

  • Gets a mailbox feature by index.

  • Remove()

  • Removes a mailbox feature of the specified type from the collection.

Properties

  • Property

  • Description

  • Count

  • Gets the number of mailbox features in the collection.

Details

Add()

Adds the specified mailbox feature to the collection.

void Add(IAdmExchangeMailboxFeature featureToAdd)

Clear()

Removes all mailbox features from the collection.

void Clear()

Create()

Creates a mailbox feature of the specified type.

IAdmExchangeMailboxFeature Create(ADM_EXCHANGE_MAILBOXFEATURETYPE_ENUM featureType)

Parameters

The featureType parameter specifies the feature type.


GetItemByType()

Gets a mailbox feature by type.

IAdmExchangeMailboxFeature GetItemByType(ADM_EXCHANGE_MAILBOXFEATURETYPE_ENUM featureType)

Parameters

The featureType parameter specifies the feature type.


GetItemByIndex()

Gets a mailbox feature by index.

IAdmExchangeMailboxFeature GetItemByIndex(int index)

Remove()

Removes a mailbox feature of the specified type from the collection.

void Remove(ADM_EXCHANGE_MAILBOXFEATURETYPE_ENUM featureType)

Parameters

The featureType parameter specifies the feature type.


Count

Gets the number of mailbox features in the collection.

  • Type:
  • int
  • Access:
  • Read-only

Requirements

Minimum required version: 2013.1

See also