Show / Hide Table of Contents

    Class HttpRequestEvidence

    Provides detailed information about a given Microsoft.AspNetCore.Http.HttpRequest.

    Inheritance
    System.Object
    HttpRequestEvidence
    Namespace: Cuemon.AspNetCore.Mvc.Filters.Diagnostics
    Assembly: Cuemon.AspNetCore.Mvc.dll
    Syntax
    public class HttpRequestEvidence

    Properties

    | Improve this Doc

    Body

    Gets the body of the request.

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

    The body of the request.

    | Improve this Doc

    Cookies

    Gets the collection of cookies for the request.

    Declaration
    public IRequestCookieCollection Cookies { get; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Http.IRequestCookieCollection

    The collection of cookies for the request.

    | Improve this Doc

    Form

    Gets the associated keys and values collection from the Microsoft.AspNetCore.Http.HttpRequest.Form.

    Declaration
    public IFormCollection Form { get; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Http.IFormCollection

    The associated keys and values collection parsed from the Microsoft.AspNetCore.Http.HttpRequest.Form.

    | Improve this Doc

    Headers

    Gets the request headers.

    Declaration
    public IHeaderDictionary Headers { get; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Http.IHeaderDictionary

    The headers of the request.

    | Improve this Doc

    Location

    Gets the request URL in a fully un-escaped form (except for the QueryString).

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

    The request URL in a fully un-escaped form (except for the QueryString).

    | Improve this Doc

    Method

    Gets the request HTTP method.

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

    The HTTP method.

    | Improve this Doc

    Query

    Gets the associated keys and values collection parsed from the Microsoft.AspNetCore.Http.HttpRequest.QueryString.

    Declaration
    public IQueryCollection Query { get; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Http.IQueryCollection

    The associated keys and values collection parsed from the Microsoft.AspNetCore.Http.HttpRequest.QueryString.

    Extension Methods

    CacheableObjectResultExtensions.ToCacheableObjectResult<T>(T, DateTime, Action<TimeBasedOptions>)
    CacheableObjectResultExtensions.ToCacheableObjectResult<T>(T, Func<T, DateTime>, Action<TimeBasedOptions>)
    CacheableObjectResultExtensions.ToCacheableObjectResult<T>(T, Byte[], Action<ContentBasedOptions>)
    CacheableObjectResultExtensions.ToCacheableObjectResult<T>(T, Func<T, Byte[]>, Action<ContentBasedOptions>)
    CacheableObjectResultExtensions.ToCacheableObjectResult<T>(T, DateTime, Byte[], Action<ContentTimeBasedOptions>)
    CacheableObjectResultExtensions.ToCacheableObjectResult<T>(T, Func<T, DateTime>, Func<T, Byte[]>, Action<ContentTimeBasedOptions>)
    CacheableObjectResultExtensions.ToCacheableObjectResult<T>(T, DateTime, Func<T, Byte[]>, Action<ContentTimeBasedOptions>)
    CacheableObjectResultExtensions.ToCacheableObjectResult<T>(T, Func<T, DateTime>, Byte[], Action<ContentTimeBasedOptions>)
    • Improve this Doc
    • View Source
    Back to top Copyright 2008-2018 Weubphoria. All rights reserved.
    Generated by DocFX