Hello ms. Lucia. Thanks for the valuable reply. You are our bestfriend now.
To retrieve the list of available events, we use this code:
Events EventList = service.Events.List(CalendarID).Execute();
To extract and list down individual event, we use this:
foreach (Event ev in EventList.Items)
{
strEvent += ev.Summary + " <br> ";
}
My question is: How exactly can we extract the Extended Properties of the EACH event?
Event items only has this
ev.ExtendedProperties.Shared
Where did you get the Query in this line of code?
Query.SharedExtendedProperty = "key=value"
What type of object/class is that?
SharedExtendedProperty is accesible in here
service.Events.List(CalendarID).SharedExtendedProperty
which I think lead us to a chance of filtering Events we want to retrieve based on shared Extended Properties key and value as a criteria.
My question again is, how can we extract, where can we assign the value of this SharedExtendedProperty?
Please share us a good and clear example.
Looking forward. Thank you ms. Lucia.