Esempio n. 1
0
 /// <summary>
 /// Get all Time Windows
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IList <TimeWindow> > GetAllTimeWindowsAsync(this IFeatureManagementAppTierAPI operations, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetAllTimeWindowsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Esempio n. 2
0
        public async Task <IActionResult> Get()
        {
            using (IFeatureManagementAppTierAPI api = CreateFeatureManagementApi())
            {
                HttpOperationResponse <IList <TimeWindow> > result = await api.GetAllTimeWindowsWithHttpMessagesAsync();

                return(CreateResponse(result));
            }
        }