2014-05-13 49 views

回答

1

那麼,2天內沒有答案。同時我找到了一種訪問其他日曆的方法。我想分享我的解決方案,以便其他人可以得到一個helsp: -

   ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010); 
      service.Credentials = new WebCredentials(); 
      Mailbox principle = new Mailbox("[email protected]"); 
      CalendarFolder calendar2 = CalendarFolder.Bind(service, new FolderId(WellKnownFolderName.Calendar, principle), new PropertySet()); 
      // Retrieve a collection of appointments by using the calendar view. 
      FindItemsResults<Appointment> appointments2 = calendar2.FindAppointments(cView2); 

約會2應該有所有的日曆會議。

+0

這節省了我的時間男人! –

相關問題