Exemplo n.º 1
0
 public void GetNodeHealth()
 {
     #region GetNodeHealthAsync (TPL)
     IQueueingService queueingService = new CloudQueuesProvider(identity, region, clientId, internalUrl, identityProvider);
     Task             task            = queueingService.GetNodeHealthAsync(CancellationToken.None);
     #endregion
 }
 public void GetNodeHealth()
 {
     #region GetNodeHealthAsync (TPL)
     IQueueingService queueingService = new CloudQueuesProvider(identity, region, clientId, internalUrl, identityProvider);
     Task task = queueingService.GetNodeHealthAsync(CancellationToken.None);
     #endregion
 }
 public async Task GetNodeHealthAsyncAwait()
 {
     #region GetNodeHealthAsync (await)
     IQueueingService queueingService = new CloudQueuesProvider(identity, region, clientId, internalUrl, identityProvider);
     await queueingService.GetNodeHealthAsync(CancellationToken.None);
     #endregion
 }
Exemplo n.º 4
0
        public async Task GetNodeHealthAsyncAwait()
        {
            #region GetNodeHealthAsync (await)
            IQueueingService queueingService = new CloudQueuesProvider(identity, region, clientId, internalUrl, identityProvider);
            await queueingService.GetNodeHealthAsync(CancellationToken.None);

            #endregion
        }