Aspose.Email.Examples.CSharp.Email.Exchange.DeleteMembersWithoutListing.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // ExStart:DeleteMembersWithoutListing
            IEWSClient client = EWSClient.GetEWSClient("https://outlook.office365.com/ews/exchange.asmx", "testUser", "pwd", "domain");
            ExchangeDistributionList distributionList = new ExchangeDistributionList();
            distributionList.Id = "list's id";
            distributionList.ChangeKey = "list's change key";
            MailAddressCollection membersToDelete = new MailAddressCollection();
            MailAddress addressToDelete = new MailAddress("address", true);
            //addressToDelete.Id.EWSId = "member's id";
            membersToDelete.Add(addressToDelete);
            client.AddToDistributionList(distributionList, membersToDelete);
            // ExEnd:DeleteMembersWithoutListing
        }
    }
DeleteMembersWithoutListing