ErrorResponseError Constructors

Definition

Overloads

ErrorResponseError()

Initializes a new instance of the ErrorResponseError class.

ErrorResponseError(String, String, IList<ErrorDetails>)

Initializes a new instance of the ErrorResponseError class.

ErrorResponseError()

Initializes a new instance of the ErrorResponseError class.

public ErrorResponseError ();
Public Sub New ()

Applies to

ErrorResponseError(String, String, IList<ErrorDetails>)

Initializes a new instance of the ErrorResponseError class.

public ErrorResponseError (string code = default, string message = default, System.Collections.Generic.IList<Microsoft.Azure.Management.WorkloadMonitor.Models.ErrorDetails> details = default);
new Microsoft.Azure.Management.WorkloadMonitor.Models.ErrorResponseError : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.WorkloadMonitor.Models.ErrorDetails> -> Microsoft.Azure.Management.WorkloadMonitor.Models.ErrorResponseError
Public Sub New (Optional code As String = Nothing, Optional message As String = Nothing, Optional details As IList(Of ErrorDetails) = Nothing)

Parameters

code
String

Service-defined error code. This code serves as a sub-status for the HTTP error code specified in the response.

message
String

Human-readable representation of the error.

details
IList<ErrorDetails>

Error details.

Applies to