Link to home
Start Free TrialLog in
Avatar of EdaAtac
EdaAtac

asked on

How do i access a shared calendar using EWS Managed API?

I want to access other users shared calendar(shared to me). How can i do this.

i used that but it didn't work.

FolderId folderToAccess = new FolderId(WellKnownFolderName.Calendar, "<email address of shared calendar>");//this works fine

service.FindAppointments(new FolderId(WellKnownFolderName.Calendar, "<email address of shared calendar>"), calendarView);// FindAppointments can't take 2 arguman
ASKER CERTIFIED SOLUTION
Avatar of Suraj
Suraj
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of EdaAtac
EdaAtac

ASKER

i want to access shared calendar using EWS Managed API with VS .NET(c#).