OwinResponse Constructor

 

Initializes a new instance of the OwinResponse class.

Namespace:   Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Overload List

Name Description
System_CAPS_pubmethod OwinResponse()

Create a new context with only request and response header collections.

System_CAPS_pubmethod 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

Return to top