OwinContext Constructors

Definition

Overloads

OwinContext()

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

OwinContext(IDictionary<String,Object>)

Create a new wrapper.

OwinContext()

Source:
OwinContext.cs

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

public OwinContext ();
Public Sub New ()

Applies to

OwinContext(IDictionary<String,Object>)

Source:
OwinContext.cs

Create a new wrapper.

public OwinContext (System.Collections.Generic.IDictionary<string,object> environment);
new Microsoft.Owin.OwinContext : System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Owin.OwinContext
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