Search Results for

    Show / Hide Table of Contents

    Class HttpError

    HttpError equivalent

    Inheritance
    System.Object
    HttpError
    Namespace: ImageVault.Client
    Assembly: ImageVault.Client.dll
    Syntax
    public class HttpError : Object

    Constructors

    HttpError()

    Declaration
    public HttpError()

    Properties

    ExceptionMessage

    Gets or sets the message of the System.Exception if available.

    Declaration
    public string ExceptionMessage { get; set; }
    Property Value
    Type Description
    System.String

    The message of the System.Exception if available.

    ExceptionType

    Gets or sets the type of the System.Exception if available.

    Declaration
    public string ExceptionType { get; set; }
    Property Value
    Type Description
    System.String

    The type of the System.Exception if available.

    InnerException

    Gets the inner HttpError associated with this instance if available.

    Declaration
    public HttpError InnerException { get; set; }
    Property Value
    Type Description
    HttpError

    The inner HttpError associated with this instance if available.

    Message

    Gets or sets the high-level, user-visible message explaining the cause of the error. Information carried in this field should be considered public in that it will go over the wire regardless of the System.Web.Http.IncludeErrorDetailPolicy. As a result care should be taken not to disclose sensitive information about the server or the application.

    Declaration
    public string Message { get; set; }
    Property Value
    Type Description
    System.String

    The high-level, user-visible message explaining the cause of the error. Information carried in this field should be considered public in that it will go over the wire regardless of the System.Web.Http.IncludeErrorDetailPolicy. As a result care should be taken not to disclose sensitive information about the server or the application.

    MessageDetail

    Gets or sets a detailed description of the error intended for the developer to understand exactly what failed.

    Declaration
    public string MessageDetail { get; set; }
    Property Value
    Type Description
    System.String

    A detailed description of the error intended for the developer to understand exactly what failed.

    StackTrace

    Gets or sets the stack trace information associated with this instance if available.

    Declaration
    public string StackTrace { get; set; }
    Property Value
    Type Description
    System.String

    The stack trace information associated with this instance if available.

    Extension Methods

    EnumExtensions.GetNames<TEnum>(TEnum)
    In This Article
    Back to top (c) Meriworks 2002-2022