OwinResponse 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
OwinResponse() |
Create a new context with only request and response header collections. |
OwinResponse(IDictionary<String,Object>) |
Creates a new environment wrapper exposing response properties. |
OwinResponse()
- Source:
- OwinResponse.cs
Create a new context with only request and response header collections.
public OwinResponse ();
Public Sub New ()
Applies to
OwinResponse(IDictionary<String,Object>)
- Source:
- OwinResponse.cs
Creates a new environment wrapper exposing response properties.
public OwinResponse (System.Collections.Generic.IDictionary<string,object> environment);
new Microsoft.Owin.OwinResponse : System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Owin.OwinResponse
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.