Show / Hide Table of Contents

    Class ErrorResponse

    Error response indicates Logic service is not able to process the incoming request. The error property contains the error details.

    Inheritance
    Object
    ErrorResponse
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Logic.dll
    Syntax
    public class ErrorResponse

    Constructors

    ErrorResponse()

    Initializes a new instance of the ErrorResponse class.

    Declaration
    public ErrorResponse ();

    ErrorResponse(ErrorProperties)

    Initializes a new instance of the ErrorResponse class.

    Declaration
    public ErrorResponse (Microsoft.Azure.Management.Logic.Models.ErrorProperties error = null);
    Parameters
    ErrorProperties error

    The error properties.

    Properties

    Error

    Gets or sets the error properties.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="error")]
    public Microsoft.Azure.Management.Logic.Models.ErrorProperties Error { get; set; }
    Property Value
    ErrorProperties

    Back to top Azure SDK for Net