Start and End can be found on the event's Times array property, just grab the first item (Times[0]) and you will see the StartTime and EndTime properties.
As a C# software engineer, you should be aware that : - there's an excellent code inspector in Visual Studio that should list every class properties in the project's libraries - there are some API reference available : http://code.google.com/intl/fr/apis/calendar/data/2.0/developers_guide_dotnet.htmland the complete .Net Gdata API reference here http://google-gdata.googlecode.com/svn/docs/Index.html (browse to Google.GData.Calendar namespace, and open EventEntry properties to see the Times array property, which is an array of When objects : browse to Google.Gdata.Extensions namespace) -- 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
