Oversight. I will add this constructor to the bugfix release.
Frank Mantek
Google
On Oct 17, 2007, at 4:47 PM, Kulvinder Singh wrote:
> Hi,
>
> I am using .NET Windows CF 1.1.0.0 libraries to retrieve the list
> of calendars using :
>
> CalendarService service = new CalendarService("MyAppName");
>
> service.setUserCredentials(userName, password);
>
>
> CalendarQuery calQuery = new CalendarQuery();
>
> calQuery.Uri = new Uri(http://www.google.com/calendar/feeds/default/
> allcalendars/full);
>
>
> //Get calender feed
>
> CalendarFeed calendarFeed = service.Query(calQuery);
>
>
> but the problem is that the Uri field is read only. So, my code
> should look like :
>
>
>
> CalendarService service = new CalendarService("MyAppName");
>
> service.setUserCredentials(userName, password);
>
>
> FeedQuery calQuery = new FeedQuery(http://www.google.com/calendar/
> feeds/default/allcalendars/full);
>
>
> //Get calender feed
>
> CalendarFeed calendarFeed = service.Query(calQuery);
>
>
> This is because CalendarQuery class doesnt have the overloaded
> constructor which i think must be present as that is present for
> FeedQuery.
>
>
> Thanks
>
> Kulvinder Singh
>
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
> >
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---