WebSpaceOperationsExtensions.GetAsync Method (IWebSpaceOperations, String)
You can retrieve details for a specified web space name by issuing an HTTP GET request. (see https://msdn.microsoft.com/en-us/library/windowsazure/dn167017.aspx for more information)
Namespace: Microsoft.WindowsAzure
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
Syntax
public static Task<WebSpacesGetResponse> GetAsync(
this IWebSpaceOperations operations,
string webSpaceName
)
public:
[ExtensionAttribute]
static Task<WebSpacesGetResponse^>^ GetAsync(
IWebSpaceOperations^ operations,
String^ webSpaceName
)
static member GetAsync :
operations:IWebSpaceOperations *
webSpaceName:string -> Task<WebSpacesGetResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
operations As IWebSpaceOperations,
webSpaceName As String
) As Task(Of WebSpacesGetResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.WebSites.IWebSpaceOperationsReference to the Microsoft.WindowsAzure.Management.WebSites.IWebSpaceOperations.
webSpaceName
Type: System.StringRequired. The name of the web space.
Return Value
Type: System.Threading.Tasks.Task<WebSpacesGetResponse>
The Get Web Space Details operation response.
See Also
WebSpaceOperationsExtensions Class
Microsoft.WindowsAzure Namespace
Return to top