Google Integrator V2 - Online Help
Google Integrator V2
Questions / Feedback?

EventList Event

Fires for each calendar event when ListEvents is called.

Syntax

[VB.NET]
Public Event OnEventList As OnEventListHandler
[C#]
public event OnEventListHandler OnEventList;

public delegate void OnEventListHandler(object sender, GcalendarEventListEventArgs e);

class GcalendarEventListEventArgs : EventArgs {
  string Id {get;}
  string ETag {get;}
  string Summary {get;}
  string Description {get;}
  string Location {get;}
  string StartTime {get;}
  string EndTime {get;}
}

Remarks

This event is fired once for each event returned when ListEvents is called. The parameters provide detail about the event.

Id is the event's Id.

ETag is the ETag of the event.

Summary is the event title.

Description provides the description (if any) of the event.

Location is the location of the event.

StartTime is a DateTime string formatted according to RFC 3339.

EndTime is a DateTime string formatted according to RFC 3339.

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 2.0.6240.0