Exemplo n.º 1
0
 /// <summary>
 /// Modifies an existing web service resource. The PATCH API call is an
 /// asynchronous operation. To determine whether it has completed successfully,
 /// you must perform a Get operation.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Name of the resource group in which the web service is located.
 /// </param>
 /// <param name='webServiceName'>
 /// The name of the web service.
 /// </param>
 /// <param name='patchPayload'>
 /// The payload to use to patch the web service.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <WebServiceInner> PatchAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebServiceInner patchPayload, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.PatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }