Date | 2023-05-20 (545 days ago) |
---|---|
Downloads | 1,759 downloads |
NuGet | View on NuGet |
GitHub | View on GitHub |
Target Frameworks | .NET 5 .NET 6 .NET 7 |
New alpha release 🎉
#installation
">InstallationVia NuGet:
dotnet add package Skybrud.Essentials.AspNetCore --version 1.0.0-alpha015
or:
Install-Package Skybrud.Essentials.AspNetCore -Version 1.0.0-alpha015
#changelog
">ChangelogIQueryCollection
extension methods should be nullable (see 0524512
)
Most of the extension methods for IQueryCollection
targeted IQueryCollection?
, while some only targeted IQueryCollection
. With proper null checks, the remaining methods can also target IQueryCollection?
.
Added TryGetEnum
extension methods for the IQueryCollection
interface (see b8b5a96
)
As an alternative to the existing GetEnum
extension methods, the package now has similar methods following the TryGet
pattern.
Added extension methods for the HeaderDictionary
class (see dc2c38a
)
This release adds various extension methods for the HeaderDictionary
class similar to the existing extension methods for the IQueryCollection
interface.
Added extension methods for the IFormCollection
interface (see 9932a32
)
This release adds various extension methods for the IFormCollection
interface similar to the existing extension methods for the IQueryCollection
interface.