Exemplo n.º 1
0
 /// <summary>
 /// Get the names of all registered <see cref="ICalendar"/>.
 /// </summary>
 /// <returns></returns>
 public Task <IReadOnlyList <string> > GetCalendarNames()
 {
     return(sched.GetCalendarNames());
 }
Exemplo n.º 2
0
 /// <summary>
 /// Get the names of all registered <see cref="ICalendar"/>.
 /// </summary>
 /// <returns></returns>
 public IList <string> GetCalendarNames()
 {
     return(sched.GetCalendarNames());
 }
Exemplo n.º 3
0
 /// <summary>
 /// Get the names of all registered <see cref="ICalendar"/>.
 /// </summary>
 /// <returns></returns>
 public string[] GetCalendarNames()
 {
     return(sched.GetCalendarNames(schedCtxt));
 }