3 messages in com.googlegroups.google-calendar-help-dataapiRe: C# Adding programmatically GUESTS...
FromSent OnAttachments
sandiegokiss28 Mar 2007 19:08 
mohammed ferozkhan28 Mar 2007 20:15 
Ryan Boyd (Google)12 Apr 2007 20:52 
Subject:Re: C# Adding programmatically GUESTS to an event
From:mohammed ferozkhan (moha@gmail.com)
Date:03/28/2007 08:15:23 PM
List:com.googlegroups.google-calendar-help-dataapi

hai frnd i joined ur group newly to gain knowledge abt google projects and their does ... pls can u expalin me how to 1.start a project ? 2.must we should have a group to work? 3.is any abstract is needed to notify this to groups abt project? pls i will b waiting for ur reply ..... urs khan

On 3/29/07, sandiegokiss <sand@gmail.com> wrote:

Uri postUri = new Uri("http://www.google.com/calendar/ feeds/default/private/full"); EventEntry myEntry = new EventEntry();

myEntry.Title.Text = title; myEntry.Content.Content = "The Title";

AtomPerson author = new AtomPerson(AtomPersonType.Author); author.Name = "My name"; author.Email = "em.@gmail.com"; myEntry.Authors.Add(author);

CalendarService myService = new CalendarService("name"); myService.setUserCredentials("em.@gmail.com", "password"); AtomEntry result = myService.Insert(postUri, myEntry);

============== This code allow me to make an entry successfully. My problem is that I cannot find a way to invite GUESTS into this eventEntry programmatically.

How can I do that ?