Share via


WebSiteOperationsExtensions.ListBackupsAsync Method (IWebSiteOperations, String, String)

 

Returns list of all backups which are tracked by the system.

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

Syntax

public static Task<WebSiteGetBackupsResponse> ListBackupsAsync(
    this IWebSiteOperations operations,
    string webSpaceName,
    string webSiteName
)
public:
[ExtensionAttribute]
static Task<WebSiteGetBackupsResponse^>^ ListBackupsAsync(
    IWebSiteOperations^ operations,
    String^ webSpaceName,
    String^ webSiteName
)
static member ListBackupsAsync : 
        operations:IWebSiteOperations *
        webSpaceName:string *
        webSiteName:string -> Task<WebSiteGetBackupsResponse>
<ExtensionAttribute>
Public Shared Function ListBackupsAsync (
    operations As IWebSiteOperations,
    webSpaceName As String,
    webSiteName As String
) As Task(Of WebSiteGetBackupsResponse)

Parameters

  • webSpaceName
    Type: System.String

    Required. The name of the web space.

  • webSiteName
    Type: System.String

    Required. The name of the web site.

Return Value

Type: System.Threading.Tasks.Task<WebSiteGetBackupsResponse>

List of backups for the website.

See Also

WebSiteOperationsExtensions Class
Microsoft.WindowsAzure Namespace

Return to top