Share via


WebSiteOperationsExtensions.GetBackupConfigurationAsync Method (IWebSiteOperations, String, String)

 

Gets a schedule configuration for site backups.

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

Syntax

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

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<WebSiteGetBackupConfigurationResponse>

Scheduled backup definition.

See Also

WebSiteOperationsExtensions Class
Microsoft.WindowsAzure Namespace

Return to top