コード例 #1
0
 /// <summary>
 /// Gets a managed instance time zone.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='locationName'>
 /// </param>
 /// <param name='timeZoneId'>
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <TimeZone> GetAsync(this ITimeZonesOperations operations, string locationName, string timeZoneId, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetWithHttpMessagesAsync(locationName, timeZoneId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
コード例 #2
0
 /// <summary>
 /// Gets a list of managed instance time zones by location.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='nextPageLink'>
 /// The NextLink from the previous successful call to List operation.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IPage <TimeZone> > ListByLocationNextAsync(this ITimeZonesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListByLocationNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
コード例 #3
0
 /// <summary>
 /// Gets a managed instance time zone.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='locationName'>
 /// </param>
 /// <param name='timeZoneId'>
 /// </param>
 public static TimeZone Get(this ITimeZonesOperations operations, string locationName, string timeZoneId)
 {
     return(operations.GetAsync(locationName, timeZoneId).GetAwaiter().GetResult());
 }
コード例 #4
0
 /// <summary>
 /// Gets a list of managed instance time zones by location.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='locationName'>
 /// </param>
 public static IPage <TimeZone> ListByLocation(this ITimeZonesOperations operations, string locationName)
 {
     return(operations.ListByLocationAsync(locationName).GetAwaiter().GetResult());
 }
コード例 #5
0
 /// <summary>
 /// Gets a list of managed instance time zones by location.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='nextPageLink'>
 /// The NextLink from the previous successful call to List operation.
 /// </param>
 public static IPage <TimeZone> ListByLocationNext(this ITimeZonesOperations operations, string nextPageLink)
 {
     return(operations.ListByLocationNextAsync(nextPageLink).GetAwaiter().GetResult());
 }