IWebSiteOperations.GetConfigurationAsync Method (String, String, CancellationToken)
Asynchronously retrieves the configuration settings for a website.
Namespace: Microsoft.WindowsAzure.Management.WebSites
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
Syntax
Task<WebSiteGetConfigurationResponse> GetConfigurationAsync(
string webSpaceName,
string webSiteName,
CancellationToken cancellationToken
)
Task<WebSiteGetConfigurationResponse^>^ GetConfigurationAsync(
String^ webSpaceName,
String^ webSiteName,
CancellationToken cancellationToken
)
abstract GetConfigurationAsync :
webSpaceName:string *
webSiteName:string *
cancellationToken:CancellationToken -> Task<WebSiteGetConfigurationResponse>
Function GetConfigurationAsync (
webSpaceName As String,
webSiteName As String,
cancellationToken As CancellationToken
) As Task(Of WebSiteGetConfigurationResponse)
Parameters
webSpaceName
Type: System.StringThe name of the web space.
webSiteName
Type: System.StringThe name of the website.
cancellationToken
Type: System.Threading.CancellationTokenThe cancellation token.
Return Value
Type: System.Threading.Tasks.Task<WebSiteGetConfigurationResponse>
An WebSiteGetConfigurationResponse object that contains the configuration settings.
Remarks
For more information about retrieving settings, see Get or Set Config Details for a Site.
See Also
IWebSiteOperations Interface
Microsoft.WindowsAzure.Management.WebSites Namespace
Return to top