Show / Hide Table of Contents

    Class CloudErrorBody

    Detailed error information of any failure.

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

    Constructors

    CloudErrorBody()

    Initializes a new instance of the CloudErrorBody class.

    Declaration
    public CloudErrorBody ();

    CloudErrorBody(String, String, String, IList<CloudErrorBody>)

    Initializes a new instance of the CloudErrorBody class.

    Declaration
    public CloudErrorBody (string code = null, string message = null, string target = null, System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.CloudErrorBody> details = null);
    Parameters
    String code

    Error code string.

    String message

    Descriptive error information.

    String target

    Error target

    IList<CloudErrorBody> details

    More detailed error information.

    Properties

    Code

    Gets error code string.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="code")]
    public string Code { get; }
    Property Value
    String

    Details

    Gets or sets more detailed error information.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="details")]
    public System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.CloudErrorBody> Details { get; set; }
    Property Value
    IList<CloudErrorBody>

    Message

    Gets descriptive error information.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="message")]
    public string Message { get; }
    Property Value
    String

    Target

    Gets or sets error target

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="target")]
    public string Target { get; set; }
    Property Value
    String

    Back to top Azure SDK for Net