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