ErrorDetails Constructors

Definition

Overloads

ErrorDetails()

Initializes a new instance of the ErrorDetails class.

ErrorDetails(String, String, IDictionary<String,Object>)

Initializes a new instance of the ErrorDetails class.

ErrorDetails()

Initializes a new instance of the ErrorDetails class.

public ErrorDetails ();
Public Sub New ()

Applies to

ErrorDetails(String, String, IDictionary<String,Object>)

Initializes a new instance of the ErrorDetails class.

public ErrorDetails (string code, string message, System.Collections.Generic.IDictionary<string,object> additionalProperties = default);
new Microsoft.Azure.Management.ResourceGraph.Models.ErrorDetails : string * string * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Azure.Management.ResourceGraph.Models.ErrorDetails
Public Sub New (code As String, message As String, Optional additionalProperties As IDictionary(Of String, Object) = Nothing)

Parameters

code
String

Error code identifying the specific error.

message
String

A human readable error message.

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

Applies to