DNTCommon.Web.Core 11.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package DNTCommon.Web.Core --version 11.0.0
                    
NuGet\Install-Package DNTCommon.Web.Core -Version 11.0.0
                    
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="DNTCommon.Web.Core" Version="11.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DNTCommon.Web.Core" Version="11.0.0" />
                    
Directory.Packages.props
<PackageReference Include="DNTCommon.Web.Core" />
                    
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 DNTCommon.Web.Core --version 11.0.0
                    
#r "nuget: DNTCommon.Web.Core, 11.0.0"
                    
#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.
#addin nuget:?package=DNTCommon.Web.Core&version=11.0.0
                    
Install DNTCommon.Web.Core as a Cake Addin
#tool nuget:?package=DNTCommon.Web.Core&version=11.0.0
                    
Install DNTCommon.Web.Core as a Cake Tool

DNTCommon.Web.Core

DNTCommon.Web.Core

DNTCommon.Web.Core provides common scenarios' solutions for ASP.NET Core applications.

Install via NuGet

To install DNTCommon.Web.Core, run the following command in the Package Manager Console:

Nuget

PM> Install-Package DNTCommon.Web.Core

You can also view the package page on NuGet.

Linux (and containers) support

The SkiaSharp library needs extra dependencies to work on Linux and containers. Please install the following NuGet packages:

PM> Install-Package SkiaSharp.NativeAssets.Linux.NoDependencies
PM> Install-Package HarfBuzzSharp.NativeAssets.Linux

You also need to modify your .csproj file to include some MSBuild directives that ensure the required files are in a good place. These extra steps are normally not required but seems to be some issues on how .NET loads them.

<Target Name="CopyFilesAfterPublish" AfterTargets="AfterPublish">
    <Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libSkiaSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />
    <Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libHarfBuzzSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />    
</Target>

Usage

After installing the DNTCommon.Web.Core package, to register its default providers, call services.AddDNTCommonWeb(); method in your Startup class.

using DNTCommon.Web.Core;

namespace MyWebApp
{
    public class Startup
    {
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddDNTCommonWeb();
        }

Features

  • ActionResults

  • Caching

    • ICacheService encapsulates IMemoryCache functionalities.
    • [NoBrowserCache] action filter sets no-cache, must-revalidate, no-store headers for the current Response.
  • DependencyInjection

    • IServiceProviderExtensions creates an IServiceScope which contains an IServiceProvider used to resolve dependencies from a newly created scope and then runs an associated callback.
  • Drawing

  • Http

    • ICommonHttpClientFactory service, reuses a single HttpClient instance across a multi-threaded application.
    • DomainHelperExtensions provides useful extension methods to extract domain info of the URL's.
    • IDownloaderService encapsulates HttpClient's best practices of downloading large files.
    • IHtmlHelperService provides helper methods to work with HTML contents such as extracting links and titles or changing relative Urls to absolute Urls.
    • IHttpRequestInfoService provides useful methods to work with current HttpContext.Request.
    • IRedirectUrlFinderService finds the actual hidden URL after multiple redirects.
    • IUrlNormalizationService transforms a URL into a normalized URL so it is possible to determine if two syntactically different URLs may be equivalent.
    • IHtmlReaderService reads the HTML document's nodes recursively.
    • IUAParserService is the updated version of the UAParser library with the latest regexes.yaml file.
  • Mail

    • IWebMailService simplifies sending an email using the MailKit library. It's able to use razor based email templates.
  • ModelBinders

    • PersianDateModelBinderProvider parses an incoming Persian date and then binds it to a DateTime property automatically. To use it globally ( assuming your app only sends Persian dates to the server), Add it to MvcOptions: services.AddMvc(options => options.UsePersianDateModelBinder()) or just apply it to an specific view-model [ModelBinder(BinderType = typeof(PersianDateModelBinder))].
    • YeKeModelBinderProvider parses an incoming text and then corrects its Ye & Ke characters automatically. To use it globally, Add it to MvcOptions: services.AddMvc(options => options.UseYeKeModelBinder()) or just apply it to an specific view-model [ModelBinder(BinderType = typeof(YeKeModelBinder))].
    • ApplyCorrectYeKeFilterAttribute parses an incoming text and then corrects its Ye & Ke characters automatically. To use it globally, Add it to MvcOptions: services.AddControllersWithViews(options => options.Filters.Add(typeof(ApplyCorrectYeKeFilterAttribute))).
  • Mvc

  • Blazor

  • Schedulers

    • BackgroundQueueController A .NET Core replacement for the old HostingEnvironment.QueueBackgroundWorkItem method.
    • ScheduledTasksController DNTScheduler.Core is a lightweight ASP.NET Core's background tasks runner and scheduler. To define a new task, create a new class that implements the IScheduledTask interface. To register this new task, call services.AddDNTScheduler(); method in your Startup class. AddDNTScheduler method, adds this new task to the list of the defined tasks. Also its first parameter defines the custom logic of the running intervals of this task. It's a callback method that will be called every second and provides the utcNow value. If it returns true, the job will be executed.If you have multiple jobs at the same time, the order parameter's value indicates the order of their execution.
  • Security

    • [AjaxOnly] action filter determines whether the HttpRequest's X-Requested-With header has XMLHttpRequest value.
    • IProtectionProviderService is an encryption provider based on Microsoft.AspNetCore.DataProtection.IDataProtector. It's only useful for short-term encryption scenarios such as creating encrypted HTTP cookies.
    • IFileNameSanitizerService determines whether the requested file is safe to download to avoid Directory Traversal & File Inclusion attacks.
    • UploadFileExtensions attribute determines only selected file extensions are safe to be uploaded.
    • AllowUploadSafeFiles attribute disallows uploading dangerous files such as .aspx, web.config and .asp files.
    • AntiDosMiddleware is a rate limiter and throttling middleware for ASP.NET Core apps. To use it first add app.UseAntiDos() and services.Configure<AntiDosConfig> to Startup.cs file. Then complete the AntiDosConfig section of the appsettings.json file.
    • IAntiXssService provides a cleaning service for unsafe HTML fragments that can lead to XSS attacks based on a whitelist of allowed tags and attributes. To use it add services.Configure<AntiXssConfig> to Startup.cs file. Then complete the AntiXssConfig section of the appsettings.json file.
    • IPasswordHasherService provides a custom Pbkdf2 hashing and validating service.
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on DNTCommon.Web.Core:

Repository Stars
VahidN/DNTIdentity
A highly customized sample of the ASP.NET Core Identity
Version Downloads Last updated
11.5.0 37 6/1/2025
11.4.0 192 5/27/2025
11.3.0 154 5/25/2025
11.2.0 233 5/16/2025
11.1.0 281 5/7/2025
11.0.0 219 5/6/2025
10.9.0 185 5/4/2025
10.8.0 129 5/2/2025
10.7.1 190 4/27/2025
10.7.0 112 4/26/2025
10.6.0 287 4/20/2025
10.5.0 321 4/9/2025
10.4.0 483 3/28/2025
10.3.0 188 3/15/2025
10.2.0 209 3/13/2025
10.1.0 364 3/5/2025
10.0.0 326 3/3/2025
9.9.1 213 3/2/2025
9.9.0 185 3/1/2025
9.8.2 383 2/21/2025
9.8.1 215 2/21/2025
9.8.0 217 2/21/2025
9.7.0 271 2/18/2025
9.6.1 317 2/14/2025
9.6.0 271 2/13/2025
9.5.0 288 2/11/2025
9.4.0 275 2/10/2025
9.3.0 408 2/7/2025
9.2.0 203 2/5/2025
9.1.0 208 2/4/2025
9.0.0 282 2/2/2025
8.9.0 464 2/1/2025
8.8.0 354 1/25/2025
8.7.1 412 1/19/2025
8.7.0 180 1/18/2025
8.6.0 230 1/17/2025
8.5.0 240 1/14/2025
8.4.0 210 1/12/2025
8.3.0 272 1/10/2025
8.2.7 195 1/8/2025
8.2.6 150 1/8/2025
8.2.5 316 1/1/2025
8.2.4 252 12/29/2024
8.2.3 223 12/26/2024
8.2.2 708 12/25/2024
8.2.1 193 12/24/2024
8.2.0 197 12/22/2024
8.1.0 157 12/22/2024
8.0.0 657 12/22/2024
7.9.11 171 12/21/2024
7.9.10 675 12/20/2024
7.9.9 116 12/19/2024
7.9.8 104 12/19/2024
7.9.7 143 12/18/2024
7.9.6 113 12/18/2024
7.9.5 328 12/17/2024
7.9.4 132 12/16/2024
7.9.3 145 12/15/2024
7.9.2 118 12/15/2024
7.9.1 119 12/14/2024
7.9.0 180 12/10/2024
7.8.1 196 12/6/2024
7.8.0 182 12/4/2024
7.7.0 182 12/1/2024
7.6.9 183 11/28/2024
7.6.8 1,698 11/19/2024
7.6.7 185 11/17/2024
7.6.6 106 11/17/2024
7.6.5 115 11/17/2024
7.6.4 107 11/17/2024
7.6.3 221 11/15/2024
7.6.2 142 11/13/2024
7.6.1 214 11/10/2024
7.6.0 138 11/9/2024
7.5.0 142 11/8/2024
7.4.0 118 11/8/2024
7.3.0 121 11/7/2024
7.2.0 155 10/31/2024
7.1.0 265 10/17/2024
7.0.0 133 10/15/2024
6.9.3 144 10/14/2024
6.9.2 109 10/14/2024
6.9.1 119 10/13/2024
6.9.0 117 10/13/2024
6.8.3 153 10/9/2024
6.8.2 118 10/9/2024
6.8.1 127 10/6/2024
6.8.0 168 10/1/2024
6.7.0 272 9/22/2024
6.6.2 132 9/21/2024
6.6.1 233 9/17/2024
6.6.0 186 9/15/2024
6.5.1 206 9/15/2024
6.5.0 124 9/15/2024
6.4.0 347 9/8/2024
6.3.1 203 8/30/2024
6.3.0 285 8/27/2024
6.2.1 241 8/21/2024
6.2.0 910 8/18/2024
6.1.0 139 8/17/2024
6.0.3 139 8/17/2024
6.0.2 173 8/16/2024
6.0.1 168 8/14/2024
6.0.0 168 8/13/2024
5.9.2 199 8/8/2024
5.9.1 105 8/5/2024
5.9.0 115 8/2/2024
5.8.0 122 7/31/2024
5.7.0 84 7/31/2024
5.6.2 110 7/29/2024
5.6.1 101 7/29/2024
5.6.0 114 7/29/2024
5.5.0 163 7/26/2024
5.4.0 151 7/25/2024
5.3.7 433 7/6/2024
5.3.6 257 6/29/2024
5.3.5 121 6/29/2024
5.3.4 599 6/25/2024
5.3.3 375 6/3/2024
5.3.2 144 6/2/2024
5.3.1 126 6/2/2024
5.3.0 229 5/12/2024
5.2.0 128 5/11/2024
5.1.0 152 5/9/2024
5.0.0 200 4/29/2024
4.9.0 163 4/25/2024
4.8.0 149 4/23/2024
4.7.2 135 4/22/2024
4.7.1 146 4/22/2024
4.7.0 141 4/22/2024
4.6.0 176 4/15/2024
4.5.0 160 4/13/2024
4.3.1 307 4/9/2024
4.3.0 166 4/5/2024
4.2.1 233 3/27/2024
4.2.0 140 3/27/2024
4.1.0 238 3/17/2024
4.0.1 177 3/17/2024
4.0.0 146 3/16/2024
3.9.2 213 3/2/2024
3.9.1 148 2/29/2024
3.9.0 462 2/18/2024
3.8.2 218 2/6/2024
3.8.1 151 1/31/2024
3.8.0 166 1/30/2024
3.7.0 654 12/28/2023
3.6.0 595 11/19/2023
3.5.5 162 11/18/2023
3.5.4 2,357 9/21/2023
3.5.3 938 8/30/2023
3.5.2 1,934 3/15/2023
3.5.1 355 3/5/2023
3.5.0 1,061 12/22/2022
3.4.1 2,127 11/20/2022
3.4.0 7,209 6/28/2022
3.3.1 506 6/25/2022
3.3.0 4,817 1/27/2022
3.2.1 709 12/18/2021
3.2.0 369 12/18/2021
3.1.0 537 11/28/2021
3.0.0 650 11/9/2021
2.9.5 752 10/26/2021
2.9.4 1,557 7/31/2021
2.9.3 446 7/31/2021
2.9.2 1,073 6/7/2021
2.9.1 2,423 2/24/2021
2.9.0 724 1/15/2021
2.8.2 564 1/8/2021
2.8.1 541 12/27/2020
2.8.0 522 12/27/2020
2.7.1 632 12/25/2020
2.7.0 511 12/24/2020
2.6.0 607 12/17/2020
2.5.0 1,736 11/23/2020
2.4.0 1,727 11/11/2020
2.3.2 781 10/17/2020
2.3.1 628 10/10/2020
2.3.0 519 10/8/2020
2.2.0 671 9/29/2020
2.1.1 1,009 9/12/2020
2.1.0 585 9/11/2020
2.0.0 859 9/3/2020
1.9.0 955 9/2/2020
1.8.2 2,688 6/8/2020
1.8.1 2,665 12/7/2019
1.8.0 980 10/23/2019
1.7.0 764 10/17/2019
1.6.1 977 9/24/2019
1.6.0 633 8/28/2019
1.5.1 449 8/14/2019
1.5.0 414 8/8/2019
1.4.0 8,739 3/23/2019
1.3.3 4,062 12/6/2018
1.3.2 1,523 9/20/2018
1.3.1 1,118 9/18/2018
1.3.0 1,792 6/7/2018
1.2.0 1,575 4/30/2018
1.1.0 1,421 4/21/2018
1.0.0 1,646 4/18/2018