Show / Hide Table of Contents

    Class ErrorFieldContract

    Error Field contract.

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

    Constructors

    ErrorFieldContract()

    Initializes a new instance of the ErrorFieldContract class.

    Declaration
    public ErrorFieldContract ();

    ErrorFieldContract(String, String, String)

    Initializes a new instance of the ErrorFieldContract class.

    Declaration
    public ErrorFieldContract (string code = null, string message = null, string target = null);
    Parameters
    String code

    Property level error code.

    String message

    Human-readable representation of property-level error.

    String target

    Property name.

    Properties

    Code

    Gets or sets property level error code.

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

    Message

    Gets or sets human-readable representation of property-level error.

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

    Target

    Gets or sets property name.

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

    Back to top Azure SDK for Net