ErrorResponseBody Constructors

Definition

Overloads

ErrorResponseBody()

Initializes a new instance of the ErrorResponseBody class.

ErrorResponseBody(String, String, String, IList<ErrorResponseBody>)

Initializes a new instance of the ErrorResponseBody class.

ErrorResponseBody()

Initializes a new instance of the ErrorResponseBody class.

public ErrorResponseBody ();
Public Sub New ()

Applies to

ErrorResponseBody(String, String, String, IList<ErrorResponseBody>)

Initializes a new instance of the ErrorResponseBody class.

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

Parameters

code
String

Error code, intended to be consumed programmatically.

message
String

Description of the error, intended for display in user interface.

target
String

Target of the particular error, for example name of the property.

details
IList<ErrorResponseBody>

A list of additional details about the error.

Applies to