EndDelete() приватный Метод

private EndDelete ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult
Результат void
Пример #1
0
 static Action<IAsyncResult> EndDelete(CloudBlobContainer c)
 {
     return result =>
         {
             try
             {
                 c.EndDelete(result);
             }
             catch (StorageClientException ex)
             {
                 if (ex.ErrorCode == StorageErrorCode.ContainerNotFound)
                     return;
                 throw;
             }
         };
 }