Share via


WebSiteOperationsExtensions.GetAsync Method

You can retrieve details for a web site by issuing an HTTP GET request. (see https://msdn.microsoft.com/en-us/library/windowsazure/dn167007.aspx for more information)

Namespace: Microsoft.WindowsAzure
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)

Usage

'Usage
Dim operations As IWebSiteOperations
Dim webSpaceName As String
Dim webSiteName As String
Dim parameters As WebSiteGetParameters
Dim returnValue As Task(Of WebSiteGetResponse)

returnValue = WebSiteOperationsExtensions.GetAsync(operations, webSpaceName, webSiteName, parameters)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetAsync ( _
    operations As IWebSiteOperations, _
    webSpaceName As String, _
    webSiteName As String, _
    parameters As WebSiteGetParameters _
) As Task(Of WebSiteGetResponse)
[ExtensionAttribute] 
public static Task<WebSiteGetResponse> GetAsync (
    IWebSiteOperations operations,
    string webSpaceName,
    string webSiteName,
    WebSiteGetParameters parameters
)
[ExtensionAttribute] 
public:
static Task<WebSiteGetResponse^>^ GetAsync (
    IWebSiteOperations^ operations, 
    String^ webSpaceName, 
    String^ webSiteName, 
    WebSiteGetParameters^ parameters
)
/** @attribute ExtensionAttribute() */ 
public static Task<WebSiteGetResponse> GetAsync (
    IWebSiteOperations operations, 
    String webSpaceName, 
    String webSiteName, 
    WebSiteGetParameters parameters
)
ExtensionAttribute 
public static function GetAsync (
    operations : IWebSiteOperations, 
    webSpaceName : String, 
    webSiteName : String, 
    parameters : WebSiteGetParameters
) : Task<WebSiteGetResponse>

Parameters

  • operations
    Reference to the Microsoft.WindowsAzure.Management.WebSites.IWebSiteOperations.
  • webSpaceName
    Required. The name of the web space.
  • webSiteName
    Required. The name of the web site.
  • parameters
    Optional. Parameters supplied to the Get Web Site Operation.

Return Value

The Get Web Site operation response.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also

Reference

WebSiteOperationsExtensions Class
WebSiteOperationsExtensions Members
Microsoft.WindowsAzure Namespace