You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A detailed description of the startup settings can be found here.
System.Web / Web.Config Settings
Katana's System.Web adapter supports the following config options:
owin:appStartup - The full type name of your startup class. If not specified then all referenced assemblies will be scanned for an assembly containing the OwinStartup attribute, or a class named Startup, or {Assembly.Name.Startup}.
owin:AutomaticAppStartup - Enables or disables the OwinHttpModule in System.Web. This is enabled by default. Without the module Katana cannot participate in the integrated pipeline. The alternative is to use the OwinHttpHandler via MapOwinPath/Route or via explicit web.config registration.