Share via


OwinRequest Constructor

 

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

Overload List

Name Description
System_CAPS_pubmethod OwinRequest()

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

System_CAPS_pubmethod OwinRequest(IDictionary<String, Object>)

Create a new environment wrapper exposing request properties.

See Also

OwinRequest Class
Microsoft.Owin Namespace

Return to top

OwinRequest Constructor ()

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

Syntax

public OwinRequest()
public:
OwinRequest()
new : unit -> OwinRequest
Public Sub New

Return to top

OwinRequest Constructor (IDictionary<String, Object>)

Create a new environment wrapper exposing request properties.

Syntax

public OwinRequest(
    IDictionary<string, object> environment
)
public:
OwinRequest(
    IDictionary<String^, Object^>^ environment
)
new : 
        environment:IDictionary<string, Object> -> OwinRequest
Public Sub New (
    environment As IDictionary(Of String, Object)
)

Parameters

Return to top