/// <summary>
 /// Constructs a new <see cref="OutlookUserSupportedTimeZonesRequestBuilder"/>.
 /// </summary>
 /// <param name="requestUrl">The URL for the request.</param>
 /// <param name="client">The <see cref="IBaseClient"/> for handling requests.</param>
 /// <param name="TimeZoneStandard">A TimeZoneStandard parameter for the OData method call.</param>
 public OutlookUserSupportedTimeZonesRequestBuilder(
     string requestUrl,
     IBaseClient client,
     TimeZoneStandard TimeZoneStandard)
     : base(requestUrl, client)
 {
     this.SetParameter("timeZoneStandard", TimeZoneStandard, false);
 }
Exemple #2
0
 /// <summary>
 /// Gets the request builder for OutlookUserSupportedTimeZones.
 /// </summary>
 /// <returns>The <see cref="IOutlookUserSupportedTimeZonesRequestBuilder"/>.</returns>
 public IOutlookUserSupportedTimeZonesRequestBuilder SupportedTimeZones(
     TimeZoneStandard TimeZoneStandard)
 {
     return(new OutlookUserSupportedTimeZonesRequestBuilder(
                this.AppendSegmentToRequestUrl("microsoft.graph.supportedTimeZones"),
                this.Client,
                TimeZoneStandard));
 }