Microsoft.Owin.SelfHost 4.2.1

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/

No packages depend on Microsoft.Owin.SelfHost.

Version Downloads Last updated
4.2.3 0 7/8/2025
4.2.2 3 2/28/2025
4.2.1 2 2/28/2025
4.2.0 2 2/28/2025
4.1.1 2 2/28/2025
4.1.0 2 2/28/2025
4.0.1 2 2/28/2025
4.0.0 2 2/28/2025
4.0.0-preview1 1 2/28/2025
4.0.0-alpha1 1 2/28/2025
3.1.0 2 2/28/2025
3.1.0-rc1 1 2/28/2025
3.0.1 2 2/28/2025
3.0.0 2 2/28/2025
3.0.0-rc2 1 2/28/2025
3.0.0-rc1 1 2/28/2025
3.0.0-beta1 1 2/28/2025
3.0.0-alpha1 1 2/28/2025
2.1.0 3 1/20/2024
2.1.0-rc1 1 2/28/2025
2.0.2 2 2/28/2025
2.0.1 2 2/28/2025
2.0.0 2 2/28/2025
2.0.0-rc1 1 2/28/2025