Microsoft.Owin.SelfHost 4.2.3

Getting started with Microsoft OWIN self-host libraries:

This package contains libraries for hosting OWIN compatible HTTP components in your own process.

An example Startup class is included below. The Startup class can be called from your application as follows:

using (WebApp.Start<Startup>("http://localhost:12345"))
{
    Console.ReadLine();
}

public class Startup
{
    public void Configuration(IAppBuilder app)
    {
#if DEBUG
        app.UseErrorPage();
#endif
        app.UseWelcomePage("/");
    }
}

For additional information see: https://github.com/aspnet/aspnetkatana http://www.owin.org/

Showing the top 20 packages that depend on Microsoft.Owin.SelfHost.

Packages Downloads
docfx
docfx
4
docfx
Generates documentation directly from source code and MarkDown files
4

Version Downloads Last updated
4.2.3 3 03/09/2026
4.2.2 2 03/09/2026
4.2.1 2 03/09/2026
4.2.0 2 03/09/2026
4.1.1 2 03/09/2026
4.1.0 2 03/09/2026
4.0.1 2 03/09/2026
4.0.0 2 03/09/2026
4.0.0-preview1 2 03/09/2026
4.0.0-alpha1 2 03/09/2026
3.1.0 2 03/09/2026
3.1.0-rc1 2 03/09/2026
3.0.1 2 03/09/2026
3.0.0 2 03/09/2026
3.0.0-rc2 2 03/09/2026
3.0.0-rc1 2 03/09/2026
3.0.0-beta1 2 03/09/2026
3.0.0-alpha1 2 03/09/2026
2.1.0 2 03/09/2026
2.1.0-rc1 2 03/09/2026
2.0.2 2 03/09/2026
2.0.1 2 03/09/2026
2.0.0 2 03/09/2026
2.0.0-rc1 2 03/09/2026