Share via


OwinResponse Constructors

Definition

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.

Applies to