Mahesh,
You didn't mention if you're using 2LO or 3LO, but I think I can help you
with that:
You have to make a query to return user's calendar (
https://www.google.com/calendar/feeds/default/allcalendars), or know the
exactly URI to the calendar you want.
Iteracting through the collection of Entries of the previous query, you can
return the URI of that particular calendar by using something like this:
CalendarFeed feed = service.Query(query);
foreach (CalendarEntry entry in feed.Entries)
{
string editEntry =
((AtomEntry)((CalendarEntry)entry)).Links[0].HRef.ToString()
EventQuery eventQuery = new EventQuery();
eventQuery.Uri = new Uri(editEntry);
...
}
I hope that helps you.
[]'s
Geraldo Magella Junior Valadares
On Tue, Sep 6, 2011 at 04:24, mahesh_mvm <[email protected]> wrote:
> adding....
>
> am using gdata .net library.
>
>
> --
> 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://code.google.com/apis/calendar/community/forum.html
>
--
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://code.google.com/apis/calendar/community/forum.html