Class WorkbookError
Error message body that will indicate why the operation failed.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.ApplicationInsights.dll
Syntax
public class WorkbookError
Constructors
WorkbookError()
Initializes a new instance of the WorkbookError class.
Declaration
public WorkbookError ();
WorkbookError(String, String, IList<ErrorFieldContract>)
Initializes a new instance of the WorkbookError class.
Declaration
public WorkbookError (string code = null, string message = null, System.Collections.Generic.IList<Microsoft.Azure.Management.ApplicationInsights.Management.Models.ErrorFieldContract> details = null);
Parameters
String
code
Service-defined error code. This code serves as a sub-status for the HTTP error code specified in the response. |
String
message
Human-readable representation of the error. |
IList<ErrorFieldContract>
details
The list of invalid fields send in request, in case of validation error. |
Properties
Code
Gets or sets service-defined error code. This code serves as a sub-status for the HTTP error code specified in the response.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="code")]
public string Code { get; set; }
Property Value
String
|
Details
Gets or sets the list of invalid fields send in request, in case of validation error.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="details")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.ApplicationInsights.Management.Models.ErrorFieldContract> Details { get; set; }
Property Value
IList<ErrorFieldContract>
|
Message
Gets or sets human-readable representation of the error.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="message")]
public string Message { get; set; }
Property Value
String
|