これが私がそれをどうやってやったかです:
Dim _cal As New Microsoft.Exchange.WebServices.Data.FolderId(Microsoft.Exchange.WebServices.Data.WellKnownFolderName.Calendar, New Microsoft.Exchange.WebServices.Data.Mailbox(_otherAddress))
Dim _calendarView As New Microsoft.Exchange.WebServices.Data.CalendarView(_startTime.Date, _endTime.Date.AddDays(1))
For Each appointmentItem As Microsoft.Exchange.WebServices.Data.Appointment In _
service.FindAppointments( _
_cal, _
_calendarView)
Next
注:これは、私の要件に必要なすべてであるため、デフォルトのカレンダーでのみ機能します
編集:デフォルト以外のカレンダーについては、ExchangeService.FindFoldersメソッドを調べましたか。試したことはありませんが、受信トレイのルート アクセスは必要ないかもしれません。