multiple calender in exchange web service
- by user3559462
i have multiple calender in my mailbox, i can retrieve only one calender that is main calnder folder using ews api 2.0, now i want whole list of calenders and appointments and meetings in that.
like i have three calender one is main calnder
1.Calender(color-code:default)
2.Jorgen(color-code:pink)
3.Soren(color-code: yellow)
i can retrieve all the values of main "Calnder", using the below code
Folder inbox = Folder.Bind(service, WellKnownFolderName.Calendar);
view.PropertySet = new PropertySet(BasePropertySet.IdOnly);
// This results in a FindItem call to EWS.
FindItemsResults<Item> results = inbox.FindItems(view);
i = 1;
m = results.TotalCount;
if (results.Count() > 0)
{
foreach (var item in results)
{
PropertySet props = new PropertySet(AppointmentSchema.MimeContent,AppointmentSchema.ParentFolderId,AppointmentSchema.Id,AppointmentSchema.Categories,AppointmentSchema.Location);
// This results in a GetItem call to EWS.
var email = Appointment.Bind(service, item.Id, props);
string iCalFileName = @"C:\export\appointment" +i ".ics";
// Save as .eml.
using (FileStream fs = new FileStream(iCalFileName, FileMode.Create, FileAccess.Write))
{
fs.Write(email.MimeContent.Content, 0, email.MimeContent.Content.Length);
}
i++;
}
now i want to get all the remaining calender schedules also, i am not able to get is
Please help, need it urgently