Microsoft.Owin.Host.SystemWeb Locates the startup class based on the following convention: AssemblyName.Startup, with a method named Configuration Allows for a fallback loader to be specified. Allows for a fallback loader and a Dependency Injection activator to be specified. Executes the loader, searching for the entry point by name. The name of the assembly and type entry point A default fallback loader that does nothing. A placeholder method that always returns null. null. A singleton instance of the NullLoader type. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized string similar to For the app startup parameter value '{0}', the assembly '{1}' was not found.. Looks up a localized string similar to For the app startup parameter value '{0}', the class '{1}' was not found in assembly '{2}'.. Looks up a localized string similar to The OwinStartup attribute discovered in assembly '{0}' referencing startup type '{1}' conflicts with the attribute in assembly '{2}' referencing startup type '{3}' because they have the same FriendlyName '{4}'. Remove or rename one of the attributes, or reference the desired type directly.. Looks up a localized string similar to The discovered startup type '{0}' conflicts with the type '{1}'. Remove or rename one of the types, or reference the desired type directly.. Looks up a localized string similar to The OwinStartupAttribute.FriendlyName value '{0}' does not match the given value '{1}' in Assembly '{2}'.. Looks up a localized string similar to No '{0}' method was found in class '{1}'.. Looks up a localized string similar to No assembly found containing a Startup or [AssemblyName].Startup class.. Looks up a localized string similar to No assembly found containing an OwinStartupAttribute.. Looks up a localized string similar to The OwinStartupAttribute.StartupType value is empty in Assembly '{0}'.. Looks up a localized string similar to The type '{0}' referenced from assembly '{1}' does not define a property 'StartupType' of type 'Type'.. Looks up a localized string similar to The given type or method '{0}' was not found. Try specifying the Assembly.. Looks up a localized string similar to The '{0}' method on class '{1}' does not have the expected signature 'void {0}(IAppBuilder)'.. This handles cookies that are limited by per cookie length. It breaks down long cookies for responses, and reassembles them from requests. The cookies are stored in the System.Web object model rather than directly in the headers. This handles cookies that are limited by per cookie length. It breaks down long cookies for responses, and reassembles them from requests. The cookies are stored in the System.Web object model rather than directly in the headers. Get the reassembled cookie. Non chunked cookies are returned normally. Cookies with missing chunks just have their "chunks:XX" header returned. The reassembled cookie, if any, or null. Appends a new response cookie to the Set-Cookie header. If the cookie is larger than the given size limit then it will be broken down into multiple cookies as follows: Set-Cookie: CookieName=chunks:3; path=/ Set-Cookie: CookieNameC1=Segment1; path=/ Set-Cookie: CookieNameC2=Segment2; path=/ Set-Cookie: CookieNameC3=Segment3; path=/ Deletes the cookie with the given key by setting an expired state. If a matching chunked cookie exists on the request, delete each chunk. A fallback manager used if HttpContextBase can't be located. The maximum size of cookie to send back to the client. If a cookie exceeds this size it will be broken down into multiple cookies. Set this value to null to disable this behavior. The default is 4090 characters, which is supported by all common browsers. Note that browsers may also have limits on the total size of all cookies per domain, and on the number of cookies per domain. Throw if not all chunks of a cookie are available on a request for re-assembly. Used to provide the data protection services that are derived from the MachineKey API. It is the best choice of data protection when you application is hosted by ASP.NET and all servers in the farm are running with the same Machine Key values. Returns a new instance of IDataProtection for the provider. Additional entropy used to ensure protected data may only be unprotected for the correct purposes. An instance of a data protection service Provides extension methods for . Gets the for the current request. Gets the for the current request. Provides extension methods for . Gets the for the current request. Gets the for the current request. Processes requests from System.Web as OWIN requests. Processes requests using the default OWIN application. Initiates an asynchronous call to the HTTP handler. An System.Web.HttpContextBase object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests. The System.AsyncCallback to call when the asynchronous method call is complete. If callback is null, the delegate is not called. Any extra data needed to process the request. An System.IAsyncResult that contains information about the status of the process. Provides an asynchronous process End method when the process ends. An System.IAsyncResult that contains information about the status of the process. Gets a value indicating whether another request can use the System.Web.IHttpHandler instance. true. Processes a route through an OWIN pipeline. Initialize an OwinRouteHandler The method to initialize the pipeline that processes requests for the route. Provides the object that processes the request. An object that processes the request. An object that encapsulates information about the request. Registers the OWIN request processing module at application startup. Registers the OWIN request processing module. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized string similar to The following errors occurred while attempting to load the app.. Looks up a localized string similar to Cannot register for 'OnSendingHeaders' event after response headers have been sent.. Looks up a localized string similar to The cookie key and options are larger than ChunksSize, leaving no room for data.. Looks up a localized string similar to The key '{0}' is already present in the dictionary.. Looks up a localized string similar to To disable OWIN startup discovery, add the appSetting owin:AutomaticAppStartup with a value of "false" in your web.config.. Looks up a localized string similar to To specify the OWIN startup Assembly, Class, or Method, add the appSetting owin:AppStartup with the fully qualified startup class or configuration method name in your web.config.. Looks up a localized string similar to The chunked cookie is incomplete. Only {0} of the expected {1} chunks were found, totaling {2} characters. A client size limit may have been exceeded.. Looks up a localized string similar to The given stage '{0}' is not supported.. Looks up a localized string similar to No owin.Environment item was found in the context.. Looks up a localized string similar to An exception was thrown while trying to load the client certificate:. Looks up a localized string similar to The OWIN entry point threw an exception:. Looks up a localized string similar to The IAsyncResult callback for OwinCallHandler threw an exception:. Looks up a localized string similar to Failed to register the OWIN module:. Looks up a localized string similar to The application threw one or more exceptions when notified of a client disconnect:. Looks up a localized string similar to Shutdown detection setup failed:. Looks up a localized string similar to One or more exceptions were thrown during app pool shutdown:. Looks up a localized string similar to An exception was thrown from a timer callback:. Looks up a localized string similar to An exception was thrown while processing the WebSocket:. Looks up a localized string similar to Support for WebSockets has been detected.. Looks up a localized string similar to No support for WebSockets has been detected.. Provides extension methods for registering OWIN applications as System.Web routes. Registers a route for the default OWIN application. The route collection. The route path to map to the default OWIN application. The created route. Registers a route for a specific OWIN application entry point. The OWIN application entry point type. The route collection. The route path to map to the given OWIN application. The OWIN application entry point. The created route. Invokes the System.Action startup delegate to build the OWIN application and then registers a route for it on the given path. The route collection. The route path to map to the given OWIN application. A System.Action delegate invoked to build the OWIN application. The created route. Registers a route for the default OWIN application. The route collection. The given name of the route. The route path to map to the default OWIN application. The created route. Registers a route for a specific OWIN application entry point. The OWIN application entry point type. The route collection. The given name of the route. The route path to map to the given OWIN application. The OWIN application entry point. The created route. Invokes the System.Action startup delegate to build the OWIN application and then registers a route for it on the given path. The route collection. The given name of the route. The route path to map to the given OWIN application. A System.Action delegate invoked to build the OWIN application. The created route. Provides a way to define routes for an OWIN pipeline. The route collection. The URL pattern for the route. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The URL pattern for the route. The values to use if the URL does not contain all the parameters. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The URL pattern for the route. The values to use if the URL does not contain all the parameters. A regular expression that specifies valid values for a URL parameter. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The URL pattern for the route. The values to use if the URL does not contain all the parameters. A regular expression that specifies valid values for a URL parameter. Custom values that are passed to the route handler, but which are not used to determine whether the route matches a specific URL pattern. These values are passed to the route handler, where they can be used for processing the request. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The name of the route. The URL pattern for the route. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The name of the route. The URL pattern for the route. The values to use if the URL does not contain all the parameters. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The name of the route. The URL pattern for the route. The values to use if the URL does not contain all the parameters. A regular expression that specifies valid values for a URL parameter. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The name of the route. The URL pattern for the route. The values to use if the URL does not contain all the parameters. A regular expression that specifies valid values for a URL parameter. Custom values that are passed to the route handler, but which are not used to determine whether the route matches a specific URL pattern. These values are passed to the route handler, where they can be used for processing the request. The method to initialize the pipeline that processes requests for the route. An implementation of ICookieManager that uses the System.Web.HttpContextBase object model. Creates a new instance of SystemWebCookieManager. Reads the requested cookie from System.Web.HttpContextBase.Request.Cookies. Appends the requested cookie to System.Web.HttpContextBase.Response.Cookies. Deletes the requested cookie by appending an expired cookie to System.Web.HttpContextBase.Response.Cookies. A fallback manager used if HttpContextBase can't be located.