IWebSiteOperations.GetConfigurationAsync Method

Definition

You can retrieve the config settings for a web site by issuing an HTTP GET request. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn166985.aspx for more information)

public System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.WebSites.Models.WebSiteGetConfigurationResponse> GetConfigurationAsync (string webSpaceName, string webSiteName, System.Threading.CancellationToken cancellationToken);
abstract member GetConfigurationAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.WebSites.Models.WebSiteGetConfigurationResponse>
Public Function GetConfigurationAsync (webSpaceName As String, webSiteName As String, cancellationToken As CancellationToken) As Task(Of WebSiteGetConfigurationResponse)

Parameters

webSpaceName
String

The name of the web space.

webSiteName
String

The name of the web site.

cancellationToken
CancellationToken

Cancellation token.

Returns

The Get Configuration Web Site operation response.

Applies to