Пример #1
0
 /// <summary>
 /// Deletes the repository.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.WebSitesExtensions.IRepositoryOperations.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static OperationResponse Delete(this IRepositoryOperations operations)
 {
     try
     {
         return operations.DeleteAsync().Result;
     }
     catch (AggregateException ex)
     {
         if (ex.InnerExceptions.Count > 1)
         {
             throw;
         }
         else
         {
             throw ex.InnerException;
         }
     }
 }
Пример #2
0
 /// <summary>
 /// Deletes the repository.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.WebSitesExtensions.IRepositoryOperations.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static Task<OperationResponse> DeleteAsync(this IRepositoryOperations operations)
 {
     return operations.DeleteAsync(CancellationToken.None);
 }