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 https://msdn.microsoft.com/en-us/library/windowsazure/dn236430.aspx for more information)
Namespace: Microsoft.WindowsAzure
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
Syntax
public static OperationResponse Delete(
this IWebSiteOperations operations,
string webSpaceName,
string webSiteName,
WebSiteDeleteParameters parameters
)
public:
[ExtensionAttribute]
static OperationResponse^ Delete(
IWebSiteOperations^ operations,
String^ webSpaceName,
String^ webSiteName,
WebSiteDeleteParameters^ parameters
)
static member Delete :
operations:IWebSiteOperations *
webSpaceName:string *
webSiteName:string *
parameters:WebSiteDeleteParameters -> OperationResponse
<ExtensionAttribute>
Public Shared Function Delete (
operations As IWebSiteOperations,
webSpaceName As String,
webSiteName As String,
parameters As WebSiteDeleteParameters
) As OperationResponse
Parameters
operations
Type: Microsoft.WindowsAzure.Management.WebSites.IWebSiteOperationsReference to the Microsoft.WindowsAzure.Management.WebSites.IWebSiteOperations.
webSpaceName
Type: System.StringRequired. The name of the web space.
webSiteName
Type: System.StringRequired. The name of the web site.
parameters
Type: Microsoft.WindowsAzure.Management.WebSites.Models.WebSiteDeleteParametersRequired. Parameters supplied to the Delete Web Site operation.
Return Value
Type: Microsoft.WindowsAzure.OperationResponse
A standard service response including an HTTP status code and request ID.
See Also
WebSiteOperationsExtensions Class
Microsoft.WindowsAzure Namespace
Return to top