AsyncOperationResult Constructors

Definition

Overloads

AsyncOperationResult()

Initializes a new instance of the AsyncOperationResult class.

AsyncOperationResult(String, Errors)

Initializes a new instance of the AsyncOperationResult class.

AsyncOperationResult()

Initializes a new instance of the AsyncOperationResult class.

public AsyncOperationResult ();
Public Sub New ()

Applies to

AsyncOperationResult(String, Errors)

Initializes a new instance of the AsyncOperationResult class.

public AsyncOperationResult (string status = default, Microsoft.Azure.Management.HDInsight.Models.Errors error = default);
new Microsoft.Azure.Management.HDInsight.Models.AsyncOperationResult : string * Microsoft.Azure.Management.HDInsight.Models.Errors -> Microsoft.Azure.Management.HDInsight.Models.AsyncOperationResult
Public Sub New (Optional status As String = Nothing, Optional error As Errors = Nothing)

Parameters

status
String

The async operation state. Possible values include: 'InProgress', 'Succeeded', 'Failed'

error
Errors

The operation error information.

Applies to