Hi,

To set "orderby" with .NET client library, try doing this -

     EventQuery query = new EventQuery();
     query.Uri = new Uri("
http://www.google.com/calendar/feeds/default/private/full";);

    query.SortOrder = CalendarSortOrder.ascending;
    query.ExtraParameters = "orderby=starttime";

Hope that helps,
Austin

On Mon, Apr 21, 2008 at 10:59 AM, stevenjamesfrank <
[EMAIL PROTECTED]> wrote:

>
> Hello,
>
> I'm having trouble getting the "orderby" query parameter to work with
> the calendar feed.  It seems that no matter what I do, the feed is
> returned with the default of last modified.
>
>
> I know I'm using the feed correctly because I'm getting the events I
> expect from the calendar I want.
>
>
> I know I'm using query parameters correctly because I can manipulate
> the results by using the "max-results" parameter.
>
>
> When I set the orderby=starttime (per the documentation) there is no
> change in the results.
>
>
> I'm using .NET and I just downloaded and installed the GData SDK and
> updated the dlls in my project (Calendar, Client and Extensions) to
> make sure I'm using the current version.
>
>
> Any thoughts?
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to