IWebSiteOperations.DeleteAsync Method (String, String, WebSiteDeleteParameters, CancellationToken)
You can delete a web site by issuing an HTTP DELETE request. If the web site being deleted is the only site remaining in a server farm, you can optionally delete the server farm as well by using the deleteEmptyServerFarm parameter. (see https://msdn.microsoft.com/library/windowsazure/dn236430.aspx for more information)
Namespace: Microsoft.WindowsAzure.Management.WebSites
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
Syntax
Task<OperationResponse> DeleteAsync(
string webSpaceName,
string webSiteName,
WebSiteDeleteParameters parameters,
CancellationToken cancellationToken
)
Task<OperationResponse^>^ DeleteAsync(
String^ webSpaceName,
String^ webSiteName,
WebSiteDeleteParameters^ parameters,
CancellationToken cancellationToken
)
abstract DeleteAsync :
webSpaceName:string *
webSiteName:string *
parameters:WebSiteDeleteParameters *
cancellationToken:CancellationToken -> Task<OperationResponse>
Function DeleteAsync (
webSpaceName As String,
webSiteName As String,
parameters As WebSiteDeleteParameters,
cancellationToken As CancellationToken
) As Task(Of OperationResponse)
Parameters
webSpaceName
Type: System.StringThe name of the web space.
webSiteName
Type: System.StringThe name of the web site.
parameters
Type: Microsoft.WindowsAzure.Management.WebSites.Models.WebSiteDeleteParametersParameters supplied to the Delete Web Site operation.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<OperationResponse>
A standard service response including an HTTP status code and request ID.
See Also
IWebSiteOperations Interface
Microsoft.WindowsAzure.Management.WebSites Namespace
Return to top