Esempio n. 1
0
 public void CreateRepeatingCalendarEvent()
 {
     IGCalendar.CreateRepeatingCalendarEvent(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, repeatUntilDate, IGCalendar.RecurrenceRuleType.Weekly, 2, body);
 }