WebSiteOperationsExtensions.Delete Method (IWebSiteOperations, String, String, WebSiteDeleteParameters)
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 http://msdn.microsoft.com/en-us/library/windowsazure/dn236430.aspx for more information)
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
public static OperationResponse Delete( this IWebSiteOperations operations, string webSpaceName, string webSiteName, WebSiteDeleteParameters parameters )
Parameters
- operations
-
Type:
Microsoft.WindowsAzure.Management.WebSites.IWebSiteOperations
Reference to the Microsoft.WindowsAzure.Management.WebSites.IWebSiteOperations.
- webSpaceName
-
Type:
System.String
Required. The name of the web space.
- webSiteName
-
Type:
System.String
Required. The name of the web site.
- parameters
-
Type:
Microsoft.WindowsAzure.Management.WebSites.Models.WebSiteDeleteParameters
Required. Parameters supplied to the Delete Web Site operation.
Return Value
Type: Microsoft.WindowsAzure.OperationResponseA standard service response including an HTTP status code and request ID.
Show: