OwinRequest Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OwinRequest() |
Create a new context with only request and response header collections. |
OwinRequest(IDictionary<String,Object>) |
Create a new environment wrapper exposing request properties. |
OwinRequest()
- Source:
- OwinRequest.cs
Create a new context with only request and response header collections.
public OwinRequest ();
Public Sub New ()
Applies to
OwinRequest(IDictionary<String,Object>)
- Source:
- OwinRequest.cs
Create a new environment wrapper exposing request properties.
public OwinRequest (System.Collections.Generic.IDictionary<string,object> environment);
new Microsoft.Owin.OwinRequest : System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Owin.OwinRequest
Public Sub New (environment As IDictionary(Of String, Object))
Parameters
- environment
- IDictionary<String,Object>
OWIN environment dictionary which stores state information about the request, response and relevant server state.