次の方法で共有


ExpandDLType クラス

定義

クラスは ExpandDLType 、配布リストを展開する要求を表します。

public ref class ExpandDLType : ExchangeWebServices::BaseRequestType
public class ExpandDLType : ExchangeWebServices.BaseRequestType
Public Class ExpandDLType
Inherits BaseRequestType
継承
ExpandDLType

次のコード例は、配布リスト拡張要求の作成方法を示しています。

// Create an ExpandDLType.
ExpandDLType <span class="label">expandDl</span> = new ExpandDLType();

// Set the e-mail address and routing type of the distribution list.
<span class="label">expandDl</span>.Mailbox = new EmailAddressType();
<span class="label">expandDl</span>.Mailbox.EmailAddress = "myDL@myDomain.com";

// Expand the distribution list.
ExpandDLResponseType expandDlResponse = esb.ExpandDL(<span class="label">expandDl</span>);

注釈

プライベート配布リストとパブリック配布リストの両方を展開できます。

: 要求で指定された EmailAddress が配布リストに対応していない場合、または要求で指定された ItemId が非公開配布リストに対応している場合、エラーが発生します。

コンストラクター

ExpandDLType()

コンストラクターは ExpandDLType 、型の新しいインスタンスを ExpandDLType 初期化します。

プロパティ

Mailbox

プロパティは Mailbox 、展開する配布リストの識別子を取得または設定します。 このプロパティは必須です。 これは、読み取り/書き込みプロパティです。

適用対象