ErrorDetail Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.OperationalInsights.Models.ErrorDetail : string * string * string * string * System.Collections.Generic.IList<string> * obj -> Microsoft.Azure.OperationalInsights.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.
- additionalProperties
- Object
Applies to
Azure SDK for .NET