C# で EWS マネージ API を使用して、さまざまなメール ID の複数の o365 メールの詳細を取得する必要があります。1、2、3 のような o365 メール ID があるとします...
これらのメール ID を渡して EWS マネージ API を呼び出すと、メール ID の詳細が入力されます。以下のようなコードを使用して、単一の電子メール ID の詳細を作成しました。
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2013_SP1);
service.Credentials = new WebCredentials("username", "Password");
service.AutodiscoverUrl(Ownerusername, RedirectionUrlValidationCallback);
EmailMessage mail = EmailMessage.Bind(service, mailID, PropertySet.FirstClassProperties);
誰か提案があれば、共有してください。