OwinRequest Constructor
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
Name | Description | |
---|---|---|
OwinRequest() | Create a new context with only request and response header collections. |
|
OwinRequest(IDictionary<String, Object>) | Create a new environment wrapper exposing request properties. |
See Also
OwinRequest Class
Microsoft.Owin Namespace
Return to top
OwinRequest Constructor ()
Create a new context with only request and response header collections.
Syntax
public OwinRequest()
public:
OwinRequest()
new : unit -> OwinRequest
Public Sub New
Return to top
OwinRequest Constructor (IDictionary<String, Object>)
Create a new environment wrapper exposing request properties.
Syntax
public OwinRequest(
IDictionary<string, object> environment
)
public:
OwinRequest(
IDictionary<String^, Object^>^ environment
)
new :
environment:IDictionary<string, Object> -> OwinRequest
Public Sub New (
environment As IDictionary(Of String, Object)
)
Parameters
environment
Type: System.Collections.Generic.IDictionary<String, Object>OWIN environment dictionary which stores state information about the request, response and relevant server state.
Return to top