Class InnerError
Inner error details.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class InnerError
Constructors
InnerError()
Initializes a new instance of the InnerError class.
Declaration
public InnerError ();
InnerError(String, String)
Initializes a new instance of the InnerError class.
Declaration
public InnerError (string exceptiontype = null, string errordetail = null);
Parameters
|
String
exceptiontype
The exception type. |
|
String
errordetail
The internal error message or exception dump. |
Properties
Errordetail
Gets or sets the internal error message or exception dump.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="errordetail")]
public string Errordetail { get; set; }
Property Value
|
String
|
Exceptiontype
Gets or sets the exception type.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="exceptiontype")]
public string Exceptiontype { get; set; }
Property Value
|
String
|