Share via


ErrorDetail Constructors

Definition

Overloads

ErrorDetail()

Initializes a new instance of the ErrorDetail class.

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

Initializes a new instance of the ErrorDetail class.

ErrorDetail()

Source:
ErrorDetail.cs

Initializes a new instance of the ErrorDetail class.

public ErrorDetail ();
Public Sub New ()

Applies to

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

Source:
ErrorDetail.cs

Initializes a new instance of the ErrorDetail class.

public ErrorDetail (string code, string message, string target = default, string value = default, System.Collections.Generic.IList<string> resources = default, object additionalProperties = default);
new Microsoft.Azure.ApplicationInsights.Query.Models.ErrorDetail : string * string * string * string * System.Collections.Generic.IList<string> * obj -> Microsoft.Azure.ApplicationInsights.Query.Models.ErrorDetail
Public Sub New (code As String, message As String, Optional target As String = Nothing, Optional value As String = Nothing, Optional resources As IList(Of String) = Nothing, Optional additionalProperties As Object = 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.

value
String

Indicates which value in 'target' is responsible for the error.

resources
IList<String>

Indicates resources which were responsible for the error.

additionalProperties
Object

Applies to