OwinResponse Constructor
Initializes a new instance of the OwinResponse class.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
Name | Description | |
---|---|---|
OwinResponse() | Create a new context with only request and response header collections. |
|
OwinResponse(IDictionary<String, Object>) | Creates a new environment wrapper exposing response properties. |
See Also
OwinResponse Class
Microsoft.Owin Namespace
Return to top
OwinResponse Constructor ()
Create a new context with only request and response header collections.
Syntax
public OwinResponse()
public:
OwinResponse()
new : unit -> OwinResponse
Public Sub New
Return to top
OwinResponse Constructor (IDictionary<String, Object>)
Creates a new environment wrapper exposing response properties.
Syntax
public OwinResponse(
IDictionary<string, object> environment
)
public:
OwinResponse(
IDictionary<String^, Object^>^ environment
)
new :
environment:IDictionary<string, Object> -> OwinResponse
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