ErrorDetail Constructors

Definition

Overloads

ErrorDetail()

Initializes a new instance of the ErrorDetail class.

ErrorDetail(String, String, String, IList<ErrorDetail>)

Initializes a new instance of the ErrorDetail class.

ErrorDetail()

Initializes a new instance of the ErrorDetail class.

public ErrorDetail ();
Public Sub New ()

Applies to

ErrorDetail(String, String, String, IList<ErrorDetail>)

Initializes a new instance of the ErrorDetail class.

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

Parameters

code
String

The error's code.

message
String

A human readable error message.

target
String

Indicates which property in the request is responsible for the error.

details
IList<ErrorDetail>

Additional error details.

Applies to