WebHostingPlanOperationsExtensions.ListAsync Method (IWebHostingPlanOperations, String)
You can list the web spaces under the current subscription by issuing a GET request. (see https://msdn.microsoft.com/en-us/library/windowsazure/dn166961.aspx for more information)
Namespace: Microsoft.WindowsAzure
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
Syntax
public static Task<WebHostingPlanListResponse> ListAsync(
this IWebHostingPlanOperations operations,
string webSpaceName
)
public:
[ExtensionAttribute]
static Task<WebHostingPlanListResponse^>^ ListAsync(
IWebHostingPlanOperations^ operations,
String^ webSpaceName
)
static member ListAsync :
operations:IWebHostingPlanOperations *
webSpaceName:string -> Task<WebHostingPlanListResponse>
<ExtensionAttribute>
Public Shared Function ListAsync (
operations As IWebHostingPlanOperations,
webSpaceName As String
) As Task(Of WebHostingPlanListResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.WebSites.IWebHostingPlanOperationsReference to the Microsoft.WindowsAzure.Management.WebSites.IWebHostingPlanOperations.
webSpaceName
Type: System.StringRequired. The name of the web space.
Return Value
Type: System.Threading.Tasks.Task<WebHostingPlanListResponse>
The List Web Hosting Plans operation response.
See Also
WebHostingPlanOperationsExtensions Class
Microsoft.WindowsAzure Namespace
Return to top