/// <summary>
 /// Validate calendar name, and check if it already exists.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Settings or Settings.Write.
 ///
 /// Required permissions: (Settings.Edit).
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='calendarExistsParameters'>
 /// </param>
 public static ODataValueBoolean CalendarExists(this ICalendars operations, CalendarExistsParameters calendarExistsParameters = default(CalendarExistsParameters))
 {
     return(operations.CalendarExistsAsync(calendarExistsParameters).GetAwaiter().GetResult());
 }
Esempio n. 2
0
 /// <summary>
 /// Validate calendar name, and check if it already exists.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Settings or Settings.Write.
 ///
 /// Required permissions: (Settings.Edit).
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='body'>
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 public static ODataValueOfBoolean CalendarExists(this ICalendars operations, CalendarsCalendarExistsParameters body = default(CalendarsCalendarExistsParameters), string expand = default(string), string select = default(string))
 {
     return(operations.CalendarExistsAsync(body, expand, select).GetAwaiter().GetResult());
 }