Class AnnotationError
Error associated with trying to create annotation with Id that already exist
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.ApplicationInsights.dll
Syntax
public class AnnotationError
Constructors
AnnotationError()
Initializes a new instance of the AnnotationError class.
Declaration
public AnnotationError ();
AnnotationError(String, String, InnerError)
Initializes a new instance of the AnnotationError class.
Declaration
public AnnotationError (string code = null, string message = null, Microsoft.Azure.Management.ApplicationInsights.Management.Models.InnerError innererror = null);
Parameters
String
code
Error detail code and explanation |
String
message
Error message |
InnerError
innererror
|
Properties
Code
Gets or sets error detail code and explanation
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="code")]
public string Code { get; set; }
Property Value
String
|
Innererror
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="innererror")]
public Microsoft.Azure.Management.ApplicationInsights.Management.Models.InnerError Innererror { get; set; }
Property Value
InnerError
|
Message
Gets or sets error message
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="message")]
public string Message { get; set; }
Property Value
String
|