DeploymentOperationsExtensions.GetLogAsync Method (IDeploymentOperations, String, String)

 

Gets a deployment log for a website.

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

Syntax

public static Task<DeploymentGetLogResponse> GetLogAsync(
    this IDeploymentOperations operations,
    string deploymentId,
    string deploymentLogId
)
public:
[ExtensionAttribute]
static Task<DeploymentGetLogResponse^>^ GetLogAsync(
    IDeploymentOperations^ operations,
    String^ deploymentId,
    String^ deploymentLogId
)
static member GetLogAsync : 
        operations:IDeploymentOperations *
        deploymentId:string *
        deploymentLogId:string -> Task<DeploymentGetLogResponse>
<ExtensionAttribute>
Public Shared Function GetLogAsync (
    operations As IDeploymentOperations,
    deploymentId As String,
    deploymentLogId As String
) As Task(Of DeploymentGetLogResponse)

Parameters

  • deploymentId
    Type: System.String

    Required. The deployment identifier.

  • deploymentLogId
    Type: System.String

    Required. The deployment log identifier.

Return Value

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

The get log for a deployments operation response.

See Also

DeploymentOperationsExtensions Class
Microsoft.WindowsAzure Namespace

Return to top