IOwinRequest Interface
Represents the request for the open web interface.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Interface IOwinRequest
'Usage
Dim instance As IOwinRequest
public interface IOwinRequest
public interface class IOwinRequest
type IOwinRequest = interface end
public interface IOwinRequest
The IOwinRequest type exposes the following members.
Properties
Name | Description | |
---|---|---|
Accept | Gets or sets the accepted request. | |
Body | Gets or sets the request body. | |
CacheControl | Gets or sets the request cache control. | |
CallCancelled | Gets or sets the call cancellation token for the request. | |
ContentType | Gets or sets the type of the context associated with the request. | |
Context | Gets the request context. | |
Cookies | Gets the collection of cookies for the request. | |
Environment | Gets the request environment. | |
Headers | Gets the request headers. | |
Host | Gets or sets the request host. | |
IsSecure | Gets or sets whether this request is secure. | |
LocalIpAddress | Gets or sets the local IP address of the object that made the request. | |
LocalPort | Gets or sets the port used in making the request. | |
MediaType | Gets or sets the type of the media in making the request. | |
Method | Gets or sets the method used in making the request. | |
Path | Gets or sets the request path. | |
PathBase | Gets or sets the request path base. | |
Protocol | Gets or sets the protocol used in the request. | |
Query | Gets the query composed of readable string collection for the request. | |
QueryString | Gets or sets the query string used in the query. | |
RemoteIpAddress | Gets or sets the remote IP address associated with the request. | |
RemotePort | Gets or sets the remote port associated with the request. | |
Scheme | Gets or sets the request scheme. | |
Uri | Gets the uniform resource identifier (URI) associated with the request. | |
User | Gets or sets the user that made the request. |
Top
Methods
Name | Description | |
---|---|---|
Get<T> | Gets the type of the request. | |
ReadFormAsync | Asynchronously reads the form associated with the request. | |
Set<T> | Sets the type of the request. |
Top