/// <summary>
 /// The Remove Dedicated Circuit Link operation deletes an existing
 /// dedicated circuit link.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.ExpressRoute.IDedicatedCircuitLinkOperations.
 /// </param>
 /// <param name='serviceKey'>
 /// Service Key associated with the dedicated circuit.
 /// </param>
 /// <returns>
 /// The response body contains the status of the specified asynchronous
 /// operation, indicating whether it has succeeded, is inprogress, or
 /// has failed. Note that this status is distinct from the HTTP status
 /// code returned for the Get Operation Status operation itself.  If
 /// the asynchronous operation succeeded, the response body includes
 /// the HTTP status code for the successful request.  If the
 /// asynchronous operation failed, the response body includes the HTTP
 /// status code for the failed request, and also includes error
 /// information regarding the failure.
 /// </returns>
 public static ExpressRouteOperationStatusResponse Remove(this IDedicatedCircuitLinkOperations operations, string serviceKey, string vnetName)
 {
     try
     {
         return(operations.RemoveAsync(serviceKey, vnetName).Result);
     }
     catch (AggregateException ex)
     {
         if (ex.InnerExceptions.Count > 1)
         {
             throw;
         }
         else
         {
             throw ex.InnerException;
         }
     }
 }
Esempio n. 2
0
 /// <summary>
 /// The Remove Dedicated Circuit Link operation deletes an existing
 /// dedicated circuit link.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.ExpressRoute.IDedicatedCircuitLinkOperations.
 /// </param>
 /// <param name='serviceKey'>
 /// Required. Service Key associated with the dedicated circuit.
 /// </param>
 /// <param name='vnetName'>
 /// Required.
 /// </param>
 /// <returns>
 /// The response body contains the status of the specified asynchronous
 /// operation, indicating whether it has succeeded, is inprogress, or
 /// has failed. Note that this status is distinct from the HTTP status
 /// code returned for the Get Operation Status operation itself.  If
 /// the asynchronous operation succeeded, the response body includes
 /// the HTTP status code for the successful request.  If the
 /// asynchronous operation failed, the response body includes the HTTP
 /// status code for the failed request, and also includes error
 /// information regarding the failure.
 /// </returns>
 public static Task <ExpressRouteOperationStatusResponse> RemoveAsync(this IDedicatedCircuitLinkOperations operations, string serviceKey, string vnetName)
 {
     return(operations.RemoveAsync(serviceKey, vnetName, CancellationToken.None));
 }