EWS Managed APIでは、特定のユーザーの予定を簡単に作成できます。
ExchangeService service = new ExchangeService();
service.Credentials = new NetworkCredentials ( "administrator", "password", "domain" );
service.AutodiscoverUrl(emailAddress);
Appointment appointment = new Appointment(service);
appointment.Subject = "Testing";
appointment.Start = DateTime.Now;
appointment.End = appointment.Start.AddHours(1);
appointment.Save();
これにより、管理者の予定が作成されます。ただし、実際に別のユーザーの予定を作成したいとします(そのユーザーを私の予定の出席者として追加しないでください)。これはEWSマネージAPIを介して可能ですか?