Class ResponseWithErrorException
Exception thrown for an invalid response with ResponseWithError information.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
public class ResponseWithErrorException : Microsoft.Rest.RestException
Constructors
ResponseWithErrorException()
Initializes a new instance of the ResponseWithErrorException class.
Declaration
public ResponseWithErrorException ();
ResponseWithErrorException(String)
Initializes a new instance of the ResponseWithErrorException class.
Declaration
public ResponseWithErrorException (string message);
Parameters
String
message
The exception message. |
ResponseWithErrorException(String, Exception)
Initializes a new instance of the ResponseWithErrorException class.
Declaration
public ResponseWithErrorException (string message, Exception innerException);
Parameters
String
message
The exception message. |
Exception
innerException
Inner exception. |
Properties
Body
Gets or sets the body object.
Declaration
public Microsoft.Azure.Management.Monitor.Models.ResponseWithError Body { get; set; }
Property Value
ResponseWithError
|
Request
Gets information about the associated HTTP request.
Declaration
public Microsoft.Rest.HttpRequestMessageWrapper Request { get; set; }
Property Value
HttpRequestMessageWrapper
|
Response
Gets information about the associated HTTP response.
Declaration
public Microsoft.Rest.HttpResponseMessageWrapper Response { get; set; }
Property Value
HttpResponseMessageWrapper
|