AspNetCore.HealthChecks.UI.Client by: Xabaril Contributors
  • 27 total downloads
  • Latest version: 2.2.3
  • HealthCheck UI Client
HealthChecks.UI:Client contains some mandatory abstractions to work with HealthChecks.UI.
AspNetCoreRateLimit by: Stefan Prodan Cristi Pufu
  • 220 total downloads
  • Latest version: 4.0.2
  • aspnetcore rate-limit throttle
ASP.NET Core rate limiting middleware
AspNet.Security.OpenIdConnect.Server by: Kévin Chalet
  • 110 total downloads
  • Latest version: 2.0.0
  • aspnetcore authentication jwt openidconnect security
OpenID Connect server middleware for ASP.NET Core.
AspNetCore.HealthChecks.UI by: Xabaril Contributors
  • 62 total downloads
  • Latest version: 2.2.31
  • HealthCheck UI
HealthChecks.UI Is a ASP.NET Core UI viewer of ASP.NET Core HealthChecks.For more information see https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks
AspNetCore.HealthChecks.Rabbitmq by: Xabaril Contributors
  • 240 total downloads
  • Latest version: 8.0.2
  • HealthCheck HealthChecks Health RabbitMQ
HealthChecks.RabbitMQ is the health check package for RabbitMQ.
Aspose.PDF by: Aspose
  • 372 total downloads
  • Latest version: 24.11.0
  • Aspose.Pdf PDF XFA XPS TIFF PCL SVG HTML XML XSL-FO FDF XFDF PDF/A form Portfolio EPUB PSD to XLS PDF-to-DOC
Aspose.PDF for .NET is a PDF document creation and manipulation component that enables your .NET applications to read, write and manipulate existing PDF documents without using Adobe Acrobat. It also allows you to create forms and manage form fields embedded in a PDF document. This component is written in managed C# and it allows developers to add PDF creation and manipulation functionality to their Microsoft .NET applications (WinForms, ASP.NET and .NET Compact Framework). Aspose.PDF for .NET is affordable and offers an incredible wealth of features including PDF compression options; table creation and manipulation; support for graph objects; extensive hyperlink functionality; extended security controls; custom font handling; integration with data sources; add or remove bookmarks; create table of contents; add, update, delete attachments and annotations; import or export PDF form data; add, replace or remove text and images; split, concatenate, extract or insert pages; transform pages to image; print PDF documents and much more.
Aspose.Pdf by: Aspose
  • 8 total downloads
  • Latest version: 18.1.0
  • Aspose.Pdf PDF XFA XPS TIFF PCL SVG HTML XML XSL-FO FDF XFDF PDF/A form Portfolio EPUB PSD to XLS PDF-to-DOC
Aspose.Pdf for .NET is a PDF document creation and manipulation component that enables your .NET applications to read, write and manipulate existing PDF documents without using Adobe Acrobat. It also allows you to create forms and manage form fields embedded in a PDF document. This component is written in managed C# and it allows developers to add PDF creation and manipulation functionality to their Microsoft .NET applications (WinForms, ASP.NET and .NET Compact Framework). Aspose.Pdf for .NET is affordable and offers an incredible wealth of features including PDF compression options; table creation and manipulation; support for graph objects; extensive hyperlink functionality; extended security controls; custom font handling; integration with data sources; add or remove bookmarks; create table of contents; add, update, delete attachments and annotations; import or export PDF form data; add, replace or remove text and images; split, concatenate, extract or inset pages; transform pages to image; print PDF documents and much more.
AspNet.Security.OpenIdConnect.Extensions by: Kévin Chalet
  • 138 total downloads
  • Latest version: 2.0.0
  • aspnetcore authentication jwt openidconnect security
OpenID Connect extensions for the OpenID Connect server middleware.
AspNet.Security.OpenId by: Kévin Chalet
  • 81 total downloads
  • Latest version: 2.1.0
  • aspnetcore authentication openid security
ASP.NET Core authentication middleware for OpenID 2.0 providers.
AspectCore.Extensions.DependencyInjection by: Lemon
  • 119 total downloads
  • Latest version: 2.4.0
  • DynamicProxy Aop DependencyInjection AspectCore
Interceptor and dynamicProxy support for Microsoft.Extensions.DependencyInjection via AspectCore Framework.
AspectCore.Core by: Lemon
  • 156 total downloads
  • Latest version: 2.4.0
  • DynamicProxy Aop Aspect AspectCore Interceptor
The implementation of the AspectCore framework.
AspNet.Security.OpenId.Steam by: Kévin Chalet
  • 95 total downloads
  • Latest version: 2.1.0
  • aspnetcore authentication openid security steam
ASP.NET Core authentication middleware for Steam.
Asp.Versioning.Abstractions by: .NET Foundation and Contributors
  • 128 total downloads
  • Latest version: 8.1.0
  • Asp AspNet AspNetCore Versioning
The abstractions library for API versioning.
AspNet.Security.OAuth.Validation by: Kévin Chalet
  • 92 total downloads
  • Latest version: 2.0.0
  • aspnetcore authentication jwt openidconnect security
OAuth2 validation middleware for ASP.NET Core.
AspNet.Security.OpenIdConnect.Primitives by: Kévin Chalet
  • 96 total downloads
  • Latest version: 2.0.0
  • aspnetcore authentication openidconnect primitives security
OpenID Connect primitives for the OpenID Connect server middleware.
AspNetCore.Security.CAS by: IUF Development
  • 68 total downloads
  • Latest version: 2.0.5
  • cas apereo middleware authentication security aspnet dotnet
AspNetCore.Security.CAS Class Library
Aspose.Cells by: Aspose
  • 602 total downloads
  • Latest version: 24.11.0
  • Excel XLS XLSX XLSB CSV PDF JPG PNG HTML ODS Numbers XLSM OOXML Spreadsheet Markdown XPS DOCX PPTX MHTML JSON SVG TIFF eBook Repair
A powerful and fast library written in C# for manipulating and converting Excel(XLS, XLSX,XLSB), ODS, CSV,JSON and HTML files.
AsyncEnumerator by: sergiis dasync
  • 168 total downloads
  • Latest version: 4.0.2
  • IAsyncEnumerable IAsyncEnumerator ForEachAsync ParallelForEachAsync async await foreach parallel async-streams linq charp .net
Introduces IAsyncEnumerable, IAsyncEnumerator, ForEachAsync(), and ParallelForEachAsync() GitHub: https://github.com/Dasync/AsyncEnumerable PROBLEM SPACE Helps to (a) create an element provider, where producing an element can take a lot of time due to dependency on other asynchronous events (e.g. wait handles, network streams), and (b) a consumer that processes those element as soon as they are ready without blocking the thread (the processing is scheduled on a worker thread instead). EXAMPLE using Dasync.Collections; static IAsyncEnumerable<int> ProduceAsyncNumbers(int start, int end) { return new AsyncEnumerable<int>(async yield => { // Just to show that ReturnAsync can be used multiple times await yield.ReturnAsync(start); for (int number = start + 1; number <= end; number++) await yield.ReturnAsync(number); // You can break the enumeration loop with the following call: yield.Break(); // This won't be executed due to the loop break above await yield.ReturnAsync(12345); }); } // Just to compare with synchronous version of enumerator static IEnumerable<int> ProduceNumbers(int start, int end) { yield return start; for (int number = start + 1; number <= end; number++) yield return number; yield break; yield return 12345; } static async Task ConsumeNumbersAsync() { var asyncEnumerableCollection = ProduceAsyncNumbers(start: 1, end: 10); await asyncEnumerableCollection.ForEachAsync(async number => { await Console.Out.WriteLineAsync($"{number}"); }); } // Just to compare with synchronous version of enumeration static void ConsumeNumbers() { var enumerableCollection = ProduceNumbers(start: 1, end: 10); foreach (var number in enumerableCollection) { Console.Out.WriteLine($"{number}"); } }
AspectCore.Extensions.Reflection by: Lemon
  • 256 total downloads
  • Latest version: 2.4.0
  • Reflection Aop DynamicProxy
Reflection extension system for AspectCore Framework.
AsciiDocNet by: forloop and contributors
  • 8 total downloads
  • Latest version: 1.0.0-alpha6
  • AsciiDoc Markdown
AsciiDoc processor for .NET
AspectCore.Abstractions by: Lemon
  • 147 total downloads
  • Latest version: 2.4.0
  • DynamicProxy Aop Aspect AspectCore Interceptor
The abstract design of the AspectCore framework.