Microsoft.AspNetCore.Owin 10.0.0-rc.1.25451.107

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.Owin.
dotnet add package Microsoft.AspNetCore.Owin --version 10.0.0-rc.1.25451.107
                    
NuGet\Install-Package Microsoft.AspNetCore.Owin -Version 10.0.0-rc.1.25451.107
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="10.0.0-rc.1.25451.107" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.AspNetCore.Owin" Version="10.0.0-rc.1.25451.107" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.Owin" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.AspNetCore.Owin --version 10.0.0-rc.1.25451.107
                    
#r "nuget: Microsoft.AspNetCore.Owin, 10.0.0-rc.1.25451.107"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Microsoft.AspNetCore.Owin@10.0.0-rc.1.25451.107
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Microsoft.AspNetCore.Owin&version=10.0.0-rc.1.25451.107&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.Owin&version=10.0.0-rc.1.25451.107&prerelease
                    
Install as a Cake Tool

About

Microsoft.AspNetCore.Owin provides adapters for running OWIN middleware in an ASP.NET Core application, and to run ASP.NET Core middleware in an OWIN application.

How to Use

To use Microsoft.AspNetCore.Owin, follow these steps:

Installation

dotnet add package Microsoft.AspNetCore.Owin

Configuration

To use OWIN middleware in an ASP.NET Core pipeline:

  1. Define the OWIN middleware, if not done already. Here's a basic "Hello World" example:
    public Task OwinHello(IDictionary<string, object> environment)
    {
        var responseText = "Hello World via OWIN";
        var responseBytes = Encoding.UTF8.GetBytes(responseText);
    
        // OWIN Environment Keys: https://owin.org/spec/spec/owin-1.0.0.html
        var responseStream = (Stream)environment["owin.ResponseBody"];
        var responseHeaders = (IDictionary<string, string[]>)environment["owin.ResponseHeaders"];
    
        responseHeaders["Content-Length"] = [responseBytes.Length.ToString(CultureInfo.InvariantCulture)];
        responseHeaders["Content-Type"] = ["text/plain"];
    
        return responseStream.WriteAsync(responseBytes, 0, responseBytes.Length);
    }
    
  2. Add the middleware to the ASP.NET Core pipeline with the UseOwin extension method. For example:
    app.UseOwin(pipeline =>
    {
        pipeline(next => OwinHello);
    });
    

Additional Documentation

For additional documentation, including examples on running ASP.NET Core on an OWIN-based server, refer to the official documentation on OWIN with ASP.NET Core.

Feedback & Contributing

Microsoft.AspNetCore.Owin is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages (88)

Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.Owin:

Package Downloads
Microsoft.AspNetCore.App

Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

Microsoft.AspNetCore.All

Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

Abp.AspNetZeroCore.Web

Package Description

DicomObjects.Core

DicomObjects.Net is a simple to use .NET based DICOM library. The API is user-friendly and is aimed to provide easy ways to build DICOM solution. This library is actively supported by MedicalConnections Ltd, UK. If you have any questions please contact our support team.

Bit.Server.Owin

Bit.Server.Owin

GitHub repositories (21)

Showing the top 20 popular GitHub repositories that depend on Microsoft.AspNetCore.Owin:

Repository Stars
NancyFx/Nancy
Lightweight, low-ceremony, framework for building HTTP based services on .Net and Mono
chromelyapps/Chromely
Build Cross Platform HTML Desktop Apps on .NET using native GUI, HTML5, JavaScript, CSS, Owin, AspNetCore (MVC, RazorPages, Blazor)
riperiperi/FreeSO
Re-implementation of The Sims Online.
wixtoolset/wix
WiX Toolset Code
Whisparr/Whisparr
aelassas/wexflow
Workflow Automation Engine
Buildalyzer/Buildalyzer
A utility to perform design-time builds of .NET projects without having to think too hard about it.
aspnet/Entropy
A chaotic experimental playground for new features and ideas - check here for small and simple samples for individual features.
aspnet/Hosting
[Archived] Code for hosting and starting up an ASP.NET Core application. Project moved to https://github.com/aspnet/Extensions and https://github.com/aspnet/AspNetCore
Sina-Soltani/Parbad
A free, open-source, integrated and extensible library which connects your web applications to online payment gateways. Gateways can be added or developed by you.
zavolokas/Inpainting
Want to remove something(someone) from a photo as it never was there? This is .NET implementation of content-aware fill. It smartly fills in unwanted or missing areas of photographs.
webview2/EdgeSharp
Build .NET Win32/WinForms/WPF WebView2 HTML5 Desktop Apps
zhupingqi/RuiJi.Net
crawler framework, distributed crawler extractor
spetz/asp-net-core-samples
mausch/QuartzNetWebConsole
Embeddable Quartz.Net web console
cmendible/dotnetcore.samples
.NET Core Samples - Code it Yourself...
Wyamio/Wyam
A modular static content and static site generator.
devmentors/DNC-DShop.Common
[Distributed .NET Core] Common library for DShop project.
yahehe/Nancy.Swagger
Nancy plugin for generated API documentation in Swagger format.
dazinator/Dotnettency
Mutlitenancy for dotnet applications
Version Downloads Last Updated
10.0.0-rc.1.25451.107 49 9/9/2025
10.0.0-preview.7.25380.108 667 8/12/2025
10.0.0-preview.6.25358.103 289 7/15/2025
10.0.0-preview.5.25277.114 656 6/6/2025
10.0.0-preview.4.25258.110 625 5/12/2025
10.0.0-preview.3.25172.1 432 4/10/2025
10.0.0-preview.2.25164.1 280 3/18/2025
10.0.0-preview.1.25120.3 270 2/25/2025
9.0.9 315 9/9/2025
9.0.8 9,152 8/5/2025
9.0.7 3,584 7/8/2025
9.0.6 12,947 6/10/2025
9.0.5 19,145 5/13/2025
9.0.4 11,973 4/8/2025
9.0.3 5,826 3/11/2025
9.0.2 8,042 2/11/2025
9.0.1 10,584 1/14/2025
9.0.0 42,065 11/12/2024
9.0.0-rc.2.24474.3 1,716 10/8/2024
9.0.0-rc.1.24452.1 262 9/10/2024
9.0.0-preview.7.24406.2 268 8/13/2024
9.0.0-preview.6.24328.4 263 7/9/2024
9.0.0-preview.5.24306.11 331 6/11/2024
9.0.0-preview.4.24267.6 265 5/21/2024
9.0.0-preview.3.24172.13 300 4/11/2024
9.0.0-preview.2.24128.4 265 3/12/2024
9.0.0-preview.1.24081.5 295 2/13/2024
8.0.20 152 9/9/2025
8.0.19 12,695 8/4/2025
8.0.18 11,575 7/8/2025
8.0.17 10,439 6/10/2025
8.0.16 27,004 5/13/2025
8.0.15 81,073 4/8/2025
8.0.14 26,123 3/11/2025
8.0.13 27,566 2/11/2025
8.0.12 18,540 1/14/2025
8.0.11 69,522 11/12/2024
8.0.10 138,202 10/8/2024
8.0.8 147,275 8/13/2024
8.0.7 73,541 7/9/2024
8.0.6 115,705 5/28/2024
8.0.5 45,845 5/14/2024
8.0.4 146,768 4/9/2024
8.0.3 44,205 3/12/2024
8.0.2 42,494 2/13/2024
8.0.1 61,300 1/9/2024
8.0.0 350,054 11/14/2023
8.0.0-rc.2.23480.2 855 10/10/2023
8.0.0-rc.1.23421.29 473 9/12/2023
8.0.0-preview.7.23375.9 435 8/8/2023
8.0.0-preview.6.23329.11 426 7/11/2023
8.0.0-preview.5.23302.2 428 6/13/2023
8.0.0-preview.4.23260.4 402 5/16/2023
8.0.0-preview.3.23177.8 439 4/11/2023
8.0.0-preview.2.23153.2 430 3/14/2023
8.0.0-preview.1.23112.2 403 2/21/2023
7.0.20 10,833 5/28/2024
7.0.19 478 5/14/2024
7.0.18 952 4/9/2024
7.0.17 1,083 3/12/2024
7.0.16 2,642 2/13/2024
7.0.15 2,538 1/9/2024
7.0.14 7,949 11/14/2023
7.0.13 53,326 10/24/2023
7.0.12 9,520 10/10/2023
7.0.11 28,326 9/12/2023
7.0.10 47,625 8/8/2023
7.0.9 33,178 7/11/2023
7.0.8 11,411 6/22/2023
7.0.7 3,941 6/13/2023
7.0.5 133,119 4/11/2023
7.0.4 60,421 3/14/2023
7.0.3 30,972 2/14/2023
7.0.2 44,915 1/10/2023
7.0.1 10,732 12/13/2022
7.0.0 20,658 11/7/2022
7.0.0-rc.2.22476.2 437 10/11/2022
7.0.0-rc.1.22427.2 509 9/14/2022
7.0.0-preview.7.22376.6 518 8/9/2022
7.0.0-preview.6.22330.3 488 7/12/2022
7.0.0-preview.5.22303.8 466 6/14/2022
7.0.0-preview.4.22251.1 531 5/10/2022
7.0.0-preview.3.22178.4 512 4/13/2022
7.0.0-preview.2.22153.2 489 3/14/2022
7.0.0-preview.1.22109.13 516 2/17/2022
6.0.36 29,313 11/12/2024
6.0.35 3,444 10/8/2024
6.0.33 6,264 8/13/2024
6.0.32 7,194 7/9/2024
6.0.31 3,179 5/28/2024
6.0.30 1,477 5/14/2024
6.0.29 172,956 4/9/2024
6.0.28 4,438 3/12/2024
6.0.27 9,551 2/13/2024
6.0.26 29,220 1/9/2024
6.0.25 18,491 11/14/2023
6.0.24 18,007 10/24/2023
6.0.23 14,379 10/10/2023
6.0.22 39,395 9/12/2023
6.0.21 39,734 8/8/2023
6.0.20 40,752 7/11/2023
6.0.19 10,568 6/22/2023
6.0.18 4,764 6/13/2023
6.0.16 77,812 4/11/2023
6.0.15 110,100 3/14/2023
6.0.14 54,589 2/14/2023
6.0.13 111,806 1/10/2023
6.0.12 32,996 12/13/2022
6.0.11 113,719 11/7/2022
6.0.10 84,540 10/11/2022
6.0.9 84,817 9/13/2022
6.0.8 73,620 8/9/2022
6.0.7 76,720 7/12/2022
6.0.6 88,845 6/14/2022
6.0.5 612,825 5/10/2022
6.0.4 159,263 4/11/2022
6.0.3 140,335 3/8/2022
6.0.2 43,111 2/8/2022
6.0.1 171,635 12/14/2021
6.0.0 331,966 11/8/2021
6.0.0-rc.2.21480.10 982 10/12/2021
6.0.0-rc.1.21452.15 981 9/14/2021
6.0.0-preview.7.21378.6 623 8/10/2021
6.0.0-preview.6.21355.2 610 7/14/2021
6.0.0-preview.5.21301.17 544 6/15/2021
6.0.0-preview.4.21253.5 510 5/24/2021
6.0.0-preview.3.21201.13 589 4/8/2021
6.0.0-preview.2.21154.6 668 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 691 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 28,132 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 6,457 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 7,230 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 21,499 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 20,673 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 18,228 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 28,515 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 21,058 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 37,193 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 71,876 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 37,054 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 28,687 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 51,883 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 68,886 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 26,573 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 18,328 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 46,833 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 287,710 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 2,867 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 4,197 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 1,848 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 1,833 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 733 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 742 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 781 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 746 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 799 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 801 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 20,541 12/13/2022
3.1.31 3,508 11/8/2022
3.1.30 2,343 10/11/2022
3.1.29 2,336 9/13/2022
3.1.28 4,828 8/9/2022
3.1.27 2,070 7/12/2022
3.1.26 5,895 6/14/2022
3.1.25 5,153 5/10/2022
3.1.24 3,773 4/11/2022
3.1.23 18,267 3/8/2022
3.1.22 25,846 12/14/2021
3.1.21 44,621 11/7/2021
3.1.20 10,142 10/11/2021
3.1.19 13,213 9/14/2021
3.1.18 33,956 8/10/2021
3.1.17 9,671 7/13/2021
3.1.16 24,315 6/8/2021
3.1.15 53,863 5/11/2021
3.1.14 31,408 4/6/2021
3.1.13 37,168 3/9/2021
3.1.12 48,325 2/9/2021
3.1.11 31,026 1/12/2021
3.1.10 70,248 11/9/2020
3.1.9 51,254 10/13/2020
3.1.8 71,930 9/8/2020
3.1.7 44,866 8/11/2020
3.1.6 36,476 7/14/2020
3.1.5 168,242 6/9/2020
3.1.4 73,964 5/12/2020
3.1.3 177,061 3/24/2020
3.1.2 116,171 2/18/2020
3.1.1 72,744 1/14/2020
3.1.0 326,842 12/3/2019
3.1.0-preview3.19555.2 1,018 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 1,021 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 1,071 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 16,217 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 5,259 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 493,049 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 1,029 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 1,057 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 27,271 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 1,261 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 1,131 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 1,870 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 1,799 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 1,843 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 1,933 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 2,290 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
2.3.0 13,121 1/14/2025
2.2.0 14,647,791 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 77,157 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 12,726 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 4,432 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.1 17,045,239 6/18/2018
2.1.0 3,336,348 5/29/2018
2.1.0-rc1-final 21,819 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 24,558 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 29,918 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.3 3,820,970 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 3,476,321 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 5,385,245 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 6,563,589 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 52,878 6/27/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 17,747 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.2 164,481 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 97,689 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 76,539 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 5,814 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.4 5,395 11/14/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 6,672 5/9/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 99,497 3/6/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 11,700 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 232,015 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 6,017 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.