![]() |
VOOZH | about |
dotnet add package Microsoft.AspNetCore.Owin --version 10.0.9
NuGet\Install-Package Microsoft.AspNetCore.Owin -Version 10.0.9
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="10.0.9" />
<PackageVersion Include="Microsoft.AspNetCore.Owin" Version="10.0.9" />Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.Owin" />Project file
paket add Microsoft.AspNetCore.Owin --version 10.0.9
#r "nuget: Microsoft.AspNetCore.Owin, 10.0.9"
#:package Microsoft.AspNetCore.Owin@10.0.9
#addin nuget:?package=Microsoft.AspNetCore.Owin&version=10.0.9Install as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.Owin&version=10.0.9Install as a Cake Tool
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.
To use Microsoft.AspNetCore.Owin, follow these steps:
dotnet add package Microsoft.AspNetCore.Owin
To use OWIN middleware in an ASP.NET Core pipeline:
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);
}
UseOwin extension method. For example:
app.UseOwin(pipeline =>
{
pipeline(next => OwinHello);
});
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.
Microsoft.AspNetCore.Owin is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
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 |
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)
|
|
|
wixtoolset/wix
WiX Toolset Code
|
|
| Whisparr/Whisparr | |
|
riperiperi/FreeSO
Re-implementation of The Sims Online.
|
|
|
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.
|
|
| dotnet/systemweb-adapters | |
|
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.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 11.0.0-preview.5.26302.115 | 79 | 6/9/2026 |
| 11.0.0-preview.4.26230.115 | 151 | 5/12/2026 |
| 11.0.0-preview.3.26207.106 | 210 | 4/14/2026 |
| 11.0.0-preview.2.26159.112 | 190 | 3/10/2026 |
| 10.0.9 | 3,870 | 6/9/2026 |
| 10.0.8 | 25,870 | 5/12/2026 |
| 10.0.7 | 26,014 | 4/21/2026 |
| 10.0.6 | 10,229 | 4/14/2026 |
| 10.0.5 | 37,454 | 3/12/2026 |
| 10.0.4 | 4,232 | 3/10/2026 |
| 9.0.17 | 153 | 6/9/2026 |
| 9.0.16 | 296 | 5/12/2026 |
| 9.0.15 | 578 | 4/14/2026 |
| 9.0.14 | 926 | 3/10/2026 |
| 8.0.28 | 782 | 6/9/2026 |
| 8.0.27 | 4,591 | 5/12/2026 |
| 8.0.26 | 3,668 | 4/14/2026 |
| 8.0.25 | 10,992 | 3/10/2026 |
| 2.3.11 | 130 | 6/9/2026 |
| 2.3.10 | 222 | 5/12/2026 |