ExpandDLType class
Exchange Server 2013
The ExpandDLType class represents a request to expand a distribution list.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
The following code example shows you how a distribution list expansion request is created.
// Create an ExpandDLType. ExpandDLType expandDl = new ExpandDLType(); // Set the e-mail address and routing type of the distribution list. expandDl.Mailbox = new EmailAddressType(); expandDl.Mailbox.EmailAddress = "myDL@myDomain.com"; // Expand the distribution list. ExpandDLResponseType expandDlResponse = esb.ExpandDL(expandDl);
Show:
Note