Class ErrorProperties
Error properties indicate why the Logic service was not able to process the incoming request. The reason is provided in the error message.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Logic.dll
Syntax
public class ErrorProperties
Constructors
ErrorProperties()
Initializes a new instance of the ErrorProperties class.
Declaration
public ErrorProperties ();
ErrorProperties(String, String)
Initializes a new instance of the ErrorProperties class.
Declaration
public ErrorProperties (string code = null, string message = null);
Parameters
|
String
code
Error code. |
|
String
message
Error message indicating why the operation failed. |
Properties
Code
Gets or sets error code.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="code")]
public string Code { get; set; }
Property Value
|
String
|
Message
Gets or sets error message indicating why the operation failed.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="message")]
public string Message { get; set; }
Property Value
|
String
|