AspNetCoreRateLimit
by: Stefan Prodan Cristi Pufu
- 354 total downloads
- Latest version: 5.0.0
ASP.NET Core rate limiting middleware
AspNet.Security.OpenIdConnect.Server
by: Kévin Chalet
- 221 total downloads
- Latest version: 2.0.0
OpenID Connect server middleware for ASP.NET Core.
Aspose.PDF
by: Aspose
- 871 total downloads
- Latest version: 25.2.0
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
- 734 total downloads
- Latest version: 18.1.0
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
- 279 total downloads
- Latest version: 2.0.0
OpenID Connect extensions for the OpenID Connect server middleware.
AspNet.Security.OpenId
by: Kévin Chalet
- 268 total downloads
- Latest version: 9.0.0
ASP.NET Core authentication middleware for OpenID 2.0 providers.
AsyncBridge
by: Daniel Grunwald Omer Mor Alex Davies jnm2
- 51 total downloads
- Latest version: 0.3.1
C# 5 async/await support for .NET Framework pre-4.5
This package is now unified to include all functionality from AsyncBridge.Net35 and AsyncBridge.Portable.
AspNet.Security.OpenId.Steam
by: Kévin Chalet
- 287 total downloads
- Latest version: 9.0.0
ASP.NET Core authentication middleware for Steam.
AspNet.ScriptManager.jQuery.UI.Combined
by: Damian Edwards
- 328 total downloads
- Latest version: 1.13.2
This package contains the AspNet.ScriptManager.jQuery.UI.Combined assembly that will automatically register jQuery.UI.Combined 1.13.2 with the ScriptManager as "jquery.ui.combined".
Asp.Versioning.Mvc.ApiExplorer
by: .NET Foundation and Contributors
- 274 total downloads
- Latest version: 8.1.0
The API Explorer extensions for ASP.NET Core API Versioning.
Asp.Versioning.Mvc
by: .NET Foundation and Contributors
- 248 total downloads
- Latest version: 8.1.0
A service API versioning library for Microsoft ASP.NET Core MVC.
Asp.Versioning.Http
by: .NET Foundation and Contributors
- 273 total downloads
- Latest version: 8.1.0
A service API versioning library for Microsoft ASP.NET Core.
Asyncify
by: Hans van Bakel
- 4 total downloads
- Latest version: 0.9.7
Asyncify-CSharp is an analyzer and codefix that allows you to quickly update your code to use the Task Asynchronous Programming model. This model, introduced in C# 5, adds an intuitive way of handling asynchronous calls within C#.
The analyzer allows large codebases to be easily modified to use the TAP model by finding violations and applying fixes up the call tree.
AspNet.ScriptManager.jQuery
by: Damian Edwards
- 554 total downloads
- Latest version: 3.7.1
This package contains the AspNet.ScriptManager.jQuery assembly that will automatically register jQuery 3.5.0 with the ScriptManager as "jquery".
Asp.Versioning.Abstractions
by: .NET Foundation and Contributors
- 219 total downloads
- Latest version: 8.1.0
The abstractions library for API versioning.
AspNet.Security.OAuth.Validation
by: Kévin Chalet
- 185 total downloads
- Latest version: 2.0.0
OAuth2 validation middleware for ASP.NET Core.
AspNet.Security.OpenIdConnect.Primitives
by: Kévin Chalet
- 181 total downloads
- Latest version: 2.0.0
OpenID Connect primitives for the OpenID Connect server middleware.
AspNetCore.Security.CAS
by: IUF Development
- 119 total downloads
- Latest version: 2.0.5
AspNetCore.Security.CAS Class Library
Aspose.Cells
by: Aspose
- 1.187k total downloads
- Latest version: 25.3.0
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
- 268 total downloads
- Latest version: 4.0.2
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}");
}
}
AspNetCore.HealthChecks.Uris
by: Xabaril Contributors
- 144 total downloads
- Latest version: 9.0.0
HealthChecks.Uris is a simple health check package for Uri groups.