Versatile OpenID Connect stack for ASP.NET Core and Microsoft.Owin (compatible with ASP.NET 4.6.1)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
1.3 KiB

// Copyright (c) André N. Klingsheim. See License.txt in the project root for license information.
namespace NWebsec.Middleware.Core
{
internal static class OwinKeys
{
//Request
internal static string RequestBody = "owin.RequestBody";
internal static string RequestHeaders = "owin.RequestHeaders";
internal static string RequestMethod = "owin.RequestMethod";
internal static string RequestPath = "owin.RequestPath";
internal static string RequestPathBase = "owin.RequestPathBase";
internal static string RequestProtocol = "owin.RequestProtocol";
internal static string RequestQueryString = "owin.RequestQueryString";
internal static string RequestScheme = "owin.RequestScheme";
//Response
internal static string ResponseBody = "owin.ResponseBody";
internal static string ResponseHeaders = "owin.ResponseHeaders";
internal static string ResponseStatusCode = "owin.ResponseStatusCode";
internal static string ResponseReasonPhrase = "owin.ResponseReasonPhrase";
internal static string ResponseProtocol = "owin.ResponseProtocol";
//Other
internal static string CallCancelled = "owin.CallCancelled";
internal static string Version = "owin.Version";
}
}