IWebHostingPlanOperations.UpdateAsync Method (String, String, WebHostingPlanUpdateParameters, CancellationToken)
Updates an existing Web Hosting Plan. (see https://azure.microsoft.com/en-us/documentation/articles/azure-web-sites-web-hosting-plans-in-depth-overview/ for more information)
Namespace: Microsoft.WindowsAzure.Management.WebSites
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
Syntax
Task<WebHostingPlanUpdateResponse> UpdateAsync(
string webSpaceName,
string webHostingPlanName,
WebHostingPlanUpdateParameters parameters,
CancellationToken cancellationToken
)
Task<WebHostingPlanUpdateResponse^>^ UpdateAsync(
String^ webSpaceName,
String^ webHostingPlanName,
WebHostingPlanUpdateParameters^ parameters,
CancellationToken cancellationToken
)
abstract UpdateAsync :
webSpaceName:string *
webHostingPlanName:string *
parameters:WebHostingPlanUpdateParameters *
cancellationToken:CancellationToken -> Task<WebHostingPlanUpdateResponse>
Function UpdateAsync (
webSpaceName As String,
webHostingPlanName As String,
parameters As WebHostingPlanUpdateParameters,
cancellationToken As CancellationToken
) As Task(Of WebHostingPlanUpdateResponse)
Parameters
webSpaceName
Type: System.StringThe name of the web space.
webHostingPlanName
Type: System.StringThe name of the web hosting plan.
parameters
Type: Microsoft.WindowsAzure.Management.WebSites.Models.WebHostingPlanUpdateParametersParameters supplied to the Update Web Hosting Plan operation.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<WebHostingPlanUpdateResponse>
The Create Web Hosting Plan operation response.
See Also
IWebHostingPlanOperations Interface
Microsoft.WindowsAzure.Management.WebSites Namespace
Return to top