7 messages in com.googlegroups.google-calendar-help-dataapiExtended Properties on Calendar (.NET...
FromSent OnAttachments
Todd18 Jun 2008 12:23 
Frank Mantek18 Jun 2008 22:51 
Todd19 Jun 2008 11:43 
Frank Mantek20 Jun 2008 03:34 
Todd20 Jun 2008 10:52 
Todd20 Jun 2008 14:53 
Frank Mantek23 Jun 2008 07:22 
Subject:Extended Properties on Calendar (.NET Client Library)
From:Todd (tjmc@gmail.com)
Date:06/18/2008 12:23:47 PM
List:com.googlegroups.google-calendar-help-dataapi

Is it possible to add Extended Properties to the CalendarEntry object using the .NET client library? I can add extended properties to events, but when I do the same with a calendar the properties don't get saved. Here's my code:

ExtendedProperty test = new ExtendedProperty(); test.Name = CalendarManager.PROP_PREFIX + "group"; test.Value = name;

masterCal.ExtensionElements.Add(test); masterCal.Update();

Thanks.