IWebSiteOperations.GetInstanceIdsAsync Method

Definition

You can retrieve the list of active instances by ids for a web site by issuing an HTTP GET request. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn166981.aspx for more information)

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

Parameters

webSpaceName
String

The name of the web space.

webSiteName
String

The name of the web site.

cancellationToken
CancellationToken

Cancellation token.

Returns

The web site instance ids response.

Applies to