Esempio n. 1
0
 public void CreateCalendarEvent()
 {
     IGCalendar.CreateCalendarEvent(id =>
     {
         calendarItemId = id;
         Debug.Log(string.Format("Calendar event was created with identifier: {0}", calendarItemId));
     }, error => { Debug.Log("An error occured: " + error); }, title, startDate, endDate, body);
 }