Class HttpRequestEvidence
Provides detailed information about a given Microsoft.AspNetCore.Http.HttpRequest.
Inheritance
Namespace: Cuemon.AspNetCore.Mvc.Filters.Diagnostics
Assembly: Cuemon.AspNetCore.Mvc.dll
Syntax
public class HttpRequestEvidence
Properties
| Improve this DocBody
Gets the body of the request.
Declaration
public string Body { get; }
Property Value
Type | Description |
---|---|
System.String | The body of the request. |
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. |
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. |
Headers
Gets the request headers.
Declaration
public IHeaderDictionary Headers { get; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Http.IHeaderDictionary | The headers of the request. |
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). |
Method
Gets the request HTTP method.
Declaration
public string Method { get; }
Property Value
Type | Description |
---|---|
System.String | The HTTP method. |
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. |