DNTCommon.Web.Core 11.7.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.7.0
                    
NuGet\Install-Package DNTCommon.Web.Core -Version 11.7.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.7.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.7.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.7.0
                    
#r "nuget: DNTCommon.Web.Core, 11.7.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.7.0
                    
Install as a Cake Addin
#tool nuget:?package=DNTCommon.Web.Core&version=11.7.0
                    
Install 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.8.0 198 6/30/2025
11.7.0 194 6/15/2025
11.6.1 255 6/13/2025
11.6.0 230 6/13/2025
11.5.1 257 6/13/2025
11.5.0 248 6/1/2025
11.4.0 276 5/27/2025
11.3.0 212 5/25/2025
11.2.0 263 5/16/2025
11.1.0 303 5/7/2025
11.0.0 282 5/6/2025
10.9.0 206 5/4/2025
10.8.0 146 5/2/2025
10.7.1 198 4/27/2025
10.7.0 125 4/26/2025
10.6.0 302 4/20/2025
10.5.0 332 4/9/2025
10.4.0 494 3/28/2025
10.3.0 194 3/15/2025
10.2.0 220 3/13/2025
10.1.0 384 3/5/2025
10.0.0 333 3/3/2025
9.9.1 223 3/2/2025
9.9.0 190 3/1/2025
9.8.2 397 2/21/2025
9.8.1 226 2/21/2025
9.8.0 231 2/21/2025
9.7.0 277 2/18/2025
9.6.1 327 2/14/2025
9.6.0 283 2/13/2025
9.5.0 297 2/11/2025
9.4.0 286 2/10/2025
9.3.0 416 2/7/2025
9.2.0 214 2/5/2025
9.1.0 216 2/4/2025
9.0.0 295 2/2/2025
8.9.0 562 2/1/2025
8.8.0 363 1/25/2025
8.7.1 423 1/19/2025
8.7.0 189 1/18/2025
8.6.0 238 1/17/2025
8.5.0 257 1/14/2025
8.4.0 223 1/12/2025
8.3.0 286 1/10/2025
8.2.7 207 1/8/2025
8.2.6 161 1/8/2025
8.2.5 324 1/1/2025
8.2.4 270 12/29/2024
8.2.3 235 12/26/2024
8.2.2 733 12/25/2024
8.2.1 207 12/24/2024
8.2.0 209 12/22/2024
8.1.0 163 12/22/2024
8.0.0 778 12/22/2024
7.9.11 180 12/21/2024
7.9.10 685 12/20/2024
7.9.9 122 12/19/2024
7.9.8 112 12/19/2024
7.9.7 149 12/18/2024
7.9.6 124 12/18/2024
7.9.5 339 12/17/2024
7.9.4 142 12/16/2024
7.9.3 155 12/15/2024
7.9.2 125 12/15/2024
7.9.1 128 12/14/2024
7.9.0 203 12/10/2024
7.8.1 204 12/6/2024
7.8.0 189 12/4/2024
7.7.0 198 12/1/2024
7.6.9 196 11/28/2024
7.6.8 1,839 11/19/2024
7.6.7 192 11/17/2024
7.6.6 121 11/17/2024
7.6.5 125 11/17/2024
7.6.4 115 11/17/2024
7.6.3 238 11/15/2024
7.6.2 150 11/13/2024
7.6.1 221 11/10/2024
7.6.0 150 11/9/2024
7.5.0 150 11/8/2024
7.4.0 133 11/8/2024
7.3.0 131 11/7/2024
7.2.0 167 10/31/2024
7.1.0 284 10/17/2024
7.0.0 143 10/15/2024
6.9.3 157 10/14/2024
6.9.2 120 10/14/2024
6.9.1 128 10/13/2024
6.9.0 134 10/13/2024
6.8.3 166 10/9/2024
6.8.2 128 10/9/2024
6.8.1 135 10/6/2024
6.8.0 176 10/1/2024
6.7.0 290 9/22/2024
6.6.2 138 9/21/2024
6.6.1 241 9/17/2024
6.6.0 192 9/15/2024
6.5.1 217 9/15/2024
6.5.0 135 9/15/2024
6.4.0 358 9/8/2024
6.3.1 214 8/30/2024
6.3.0 303 8/27/2024
6.2.1 257 8/21/2024
6.2.0 918 8/18/2024
6.1.0 152 8/17/2024
6.0.3 153 8/17/2024
6.0.2 179 8/16/2024
6.0.1 179 8/14/2024
6.0.0 180 8/13/2024
5.9.2 204 8/8/2024
5.9.1 111 8/5/2024
5.9.0 122 8/2/2024
5.8.0 128 7/31/2024
5.7.0 91 7/31/2024
5.6.2 121 7/29/2024
5.6.1 108 7/29/2024
5.6.0 125 7/29/2024
5.5.0 180 7/26/2024
5.4.0 162 7/25/2024
5.3.7 447 7/6/2024
5.3.6 272 6/29/2024
5.3.5 135 6/29/2024
5.3.4 606 6/25/2024
5.3.3 390 6/3/2024
5.3.2 158 6/2/2024
5.3.1 132 6/2/2024
5.3.0 240 5/12/2024
5.2.0 140 5/11/2024
5.1.0 164 5/9/2024
5.0.0 208 4/29/2024
4.9.0 168 4/25/2024
4.8.0 155 4/23/2024
4.7.2 146 4/22/2024
4.7.1 153 4/22/2024
4.7.0 149 4/22/2024
4.6.0 186 4/15/2024
4.5.0 169 4/13/2024
4.3.1 314 4/9/2024
4.3.0 180 4/5/2024
4.2.1 249 3/27/2024
4.2.0 155 3/27/2024
4.1.0 249 3/17/2024
4.0.1 191 3/17/2024
4.0.0 152 3/16/2024
3.9.2 220 3/2/2024
3.9.1 159 2/29/2024
3.9.0 478 2/18/2024
3.8.2 225 2/6/2024
3.8.1 157 1/31/2024
3.8.0 183 1/30/2024
3.7.0 673 12/28/2023
3.6.0 602 11/19/2023
3.5.5 173 11/18/2023
3.5.4 2,419 9/21/2023
3.5.3 948 8/30/2023
3.5.2 1,953 3/15/2023
3.5.1 378 3/5/2023
3.5.0 1,073 12/22/2022
3.4.1 2,147 11/20/2022
3.4.0 7,224 6/28/2022
3.3.1 524 6/25/2022
3.3.0 4,858 1/27/2022
3.2.1 730 12/18/2021
3.2.0 385 12/18/2021
3.1.0 556 11/28/2021
3.0.0 666 11/9/2021
2.9.5 776 10/26/2021
2.9.4 1,674 7/31/2021
2.9.3 473 7/31/2021
2.9.2 1,091 6/7/2021
2.9.1 2,470 2/24/2021
2.9.0 745 1/15/2021
2.8.2 587 1/8/2021
2.8.1 558 12/27/2020
2.8.0 538 12/27/2020
2.7.1 654 12/25/2020
2.7.0 531 12/24/2020
2.6.0 627 12/17/2020
2.5.0 1,760 11/23/2020
2.4.0 1,746 11/11/2020
2.3.2 801 10/17/2020
2.3.1 651 10/10/2020
2.3.0 539 10/8/2020
2.2.0 688 9/29/2020
2.1.1 1,031 9/12/2020
2.1.0 609 9/11/2020
2.0.0 879 9/3/2020
1.9.0 977 9/2/2020
1.8.2 2,718 6/8/2020
1.8.1 2,684 12/7/2019
1.8.0 1,002 10/23/2019
1.7.0 783 10/17/2019
1.6.1 997 9/24/2019
1.6.0 658 8/28/2019
1.5.1 476 8/14/2019
1.5.0 437 8/8/2019
1.4.0 8,833 3/23/2019
1.3.3 4,126 12/6/2018
1.3.2 1,554 9/20/2018
1.3.1 1,146 9/18/2018
1.3.0 1,862 6/7/2018
1.2.0 1,650 4/30/2018
1.1.0 1,492 4/21/2018
1.0.0 1,713 4/18/2018