Share via


WebSiteOperationsExtensions.CreateAsync Method

You can create a web site by using a POST request that includes the name of the web site and other information in the request body. (see https://msdn.microsoft.com/en-us/library/windowsazure/dn166986.aspx for more information)

Namespace: Microsoft.WindowsAzure
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)

Usage

'Usage
Dim operations As IWebSiteOperations
Dim webSpaceName As String
Dim parameters As WebSiteCreateParameters
Dim returnValue As Task(Of WebSiteCreateResponse)

returnValue = WebSiteOperationsExtensions.CreateAsync(operations, webSpaceName, parameters)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function CreateAsync ( _
    operations As IWebSiteOperations, _
    webSpaceName As String, _
    parameters As WebSiteCreateParameters _
) As Task(Of WebSiteCreateResponse)
[ExtensionAttribute] 
public static Task<WebSiteCreateResponse> CreateAsync (
    IWebSiteOperations operations,
    string webSpaceName,
    WebSiteCreateParameters parameters
)
[ExtensionAttribute] 
public:
static Task<WebSiteCreateResponse^>^ CreateAsync (
    IWebSiteOperations^ operations, 
    String^ webSpaceName, 
    WebSiteCreateParameters^ parameters
)
/** @attribute ExtensionAttribute() */ 
public static Task<WebSiteCreateResponse> CreateAsync (
    IWebSiteOperations operations, 
    String webSpaceName, 
    WebSiteCreateParameters parameters
)
ExtensionAttribute 
public static function CreateAsync (
    operations : IWebSiteOperations, 
    webSpaceName : String, 
    parameters : WebSiteCreateParameters
) : Task<WebSiteCreateResponse>

Parameters

  • operations
    Reference to the Microsoft.WindowsAzure.Management.WebSites.IWebSiteOperations.
  • webSpaceName
    Required. The name of the web space.
  • parameters
    Required. Parameters supplied to the Create Web Site operation.

Return Value

The Create Web Site operation response.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also

Reference

WebSiteOperationsExtensions Class
WebSiteOperationsExtensions Members
Microsoft.WindowsAzure Namespace