Share via


ProviderError Constructors

Definition

Overloads

ProviderError()

Initializes a new instance of the ProviderError class.

ProviderError(Nullable<Int32>, String, String, String, String)

Initializes a new instance of the ProviderError class.

ProviderError()

Initializes a new instance of the ProviderError class.

public ProviderError ();
Public Sub New ()

Applies to

ProviderError(Nullable<Int32>, String, String, String, String)

Initializes a new instance of the ProviderError class.

public ProviderError (int? errorCode = default, string errorMessage = default, string errorId = default, string possibleCauses = default, string recommendedAction = default);
new Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.ProviderError : Nullable<int> * string * string * string * string -> Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.ProviderError
Public Sub New (Optional errorCode As Nullable(Of Integer) = Nothing, Optional errorMessage As String = Nothing, Optional errorId As String = Nothing, Optional possibleCauses As String = Nothing, Optional recommendedAction As String = Nothing)

Parameters

errorCode
Nullable<Int32>

The Error code.

errorMessage
String

The Error message.

errorId
String

The Provider error Id.

possibleCauses
String

The possible causes for the error.

recommendedAction
String

The recommended action to resolve the error.

Applies to