IOwinContext Interface
This wraps OWIN environment dictionary and provides strongly typed accessors.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
public interface IOwinContext
public interface class IOwinContext
type IOwinContext = interface end
Public Interface IOwinContext
Properties
Name | Description | |
---|---|---|
![]() |
Authentication | Gets the Authentication middleware functionality available on the current request. |
![]() |
Environment | Gets the OWIN environment. |
![]() |
Request | Gets a wrapper exposing request specific properties. |
![]() |
Response | Gets a wrapper exposing response specific properties. |
![]() |
TraceOutput | Gets or sets the host.TraceOutput environment value. |
Methods
Name | Description | |
---|---|---|
![]() |
Get<T>(String) | Gets a value from the OWIN environment, or returns default(T) if not present. |
![]() |
Set<T>(String, T) | Sets the given key and value in the OWIN environment. |
See Also
Return to top