DNTCommon.Web.Core 10.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 10.0.0
                    
NuGet\Install-Package DNTCommon.Web.Core -Version 10.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="10.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="10.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 10.0.0
                    
#r "nuget: DNTCommon.Web.Core, 10.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=10.0.0
                    
Install DNTCommon.Web.Core as a Cake Addin
#tool nuget:?package=DNTCommon.Web.Core&version=10.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. 
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
10.4.0 167 3/28/2025
10.3.0 163 3/15/2025
10.2.0 189 3/13/2025
10.1.0 348 3/5/2025
10.0.0 308 3/3/2025
9.9.1 199 3/2/2025
9.9.0 171 3/1/2025
9.8.2 330 2/21/2025
9.8.1 200 2/21/2025
9.8.0 202 2/21/2025
9.7.0 256 2/18/2025
9.6.1 292 2/14/2025
9.6.0 256 2/13/2025
9.5.0 276 2/11/2025
9.4.0 262 2/10/2025
9.3.0 396 2/7/2025
9.2.0 191 2/5/2025
9.1.0 194 2/4/2025
9.0.0 231 2/2/2025
8.9.0 282 2/1/2025
8.8.0 341 1/25/2025
8.7.1 392 1/19/2025
8.7.0 168 1/18/2025
8.6.0 219 1/17/2025
8.5.0 221 1/14/2025
8.4.0 194 1/12/2025
8.3.0 227 1/10/2025
8.2.7 184 1/8/2025
8.2.6 139 1/8/2025
8.2.5 303 1/1/2025
8.2.4 241 12/29/2024
8.2.3 211 12/26/2024
8.2.2 670 12/25/2024
8.2.1 182 12/24/2024
8.2.0 184 12/22/2024
8.1.0 145 12/22/2024
8.0.0 364 12/22/2024
7.9.11 160 12/21/2024
7.9.10 664 12/20/2024
7.9.9 104 12/19/2024
7.9.8 93 12/19/2024
7.9.7 128 12/18/2024
7.9.6 102 12/18/2024
7.9.5 314 12/17/2024
7.9.4 116 12/16/2024
7.9.3 128 12/15/2024
7.9.2 103 12/15/2024
7.9.1 104 12/14/2024
7.9.0 167 12/10/2024
7.8.1 180 12/6/2024
7.8.0 164 12/4/2024
7.7.0 167 12/1/2024
7.6.9 161 11/28/2024
7.6.8 1,244 11/19/2024
7.6.7 171 11/17/2024
7.6.6 94 11/17/2024
7.6.5 103 11/17/2024
7.6.4 96 11/17/2024
7.6.3 173 11/15/2024
7.6.2 128 11/13/2024
7.6.1 203 11/10/2024
7.6.0 127 11/9/2024
7.5.0 131 11/8/2024
7.4.0 106 11/8/2024
7.3.0 110 11/7/2024
7.2.0 143 10/31/2024
7.1.0 249 10/17/2024
7.0.0 122 10/15/2024
6.9.3 132 10/14/2024
6.9.2 97 10/14/2024
6.9.1 106 10/13/2024
6.9.0 104 10/13/2024
6.8.3 141 10/9/2024
6.8.2 107 10/9/2024
6.8.1 116 10/6/2024
6.8.0 157 10/1/2024
6.7.0 256 9/22/2024
6.6.2 121 9/21/2024
6.6.1 211 9/17/2024
6.6.0 174 9/15/2024
6.5.1 188 9/15/2024
6.5.0 113 9/15/2024
6.4.0 335 9/8/2024
6.3.1 189 8/30/2024
6.3.0 260 8/27/2024
6.2.1 229 8/21/2024
6.2.0 837 8/18/2024
6.1.0 127 8/17/2024
6.0.3 128 8/17/2024
6.0.2 161 8/16/2024
6.0.1 155 8/14/2024
6.0.0 155 8/13/2024
5.9.2 188 8/8/2024
5.9.1 94 8/5/2024
5.9.0 102 8/2/2024
5.8.0 109 7/31/2024
5.7.0 73 7/31/2024
5.6.2 100 7/29/2024
5.6.1 90 7/29/2024
5.6.0 103 7/29/2024
5.5.0 152 7/26/2024
5.4.0 139 7/25/2024
5.3.7 367 7/6/2024
5.3.6 242 6/29/2024
5.3.5 109 6/29/2024
5.3.4 582 6/25/2024
5.3.3 333 6/3/2024
5.3.2 132 6/2/2024
5.3.1 115 6/2/2024
5.3.0 212 5/12/2024
5.2.0 117 5/11/2024
5.1.0 138 5/9/2024
5.0.0 188 4/29/2024
4.9.0 152 4/25/2024
4.8.0 138 4/23/2024
4.7.2 124 4/22/2024
4.7.1 134 4/22/2024
4.7.0 130 4/22/2024
4.6.0 162 4/15/2024
4.5.0 149 4/13/2024
4.3.1 296 4/9/2024
4.3.0 149 4/5/2024
4.2.1 220 3/27/2024
4.2.0 128 3/27/2024
4.1.0 223 3/17/2024
4.0.1 160 3/17/2024
4.0.0 135 3/16/2024
3.9.2 200 3/2/2024
3.9.1 137 2/29/2024
3.9.0 442 2/18/2024
3.8.2 207 2/6/2024
3.8.1 140 1/31/2024
3.8.0 154 1/30/2024
3.7.0 635 12/28/2023
3.6.0 587 11/19/2023
3.5.5 159 11/18/2023
3.5.4 2,326 9/21/2023
3.5.3 882 8/30/2023
3.5.2 1,901 3/15/2023
3.5.1 344 3/5/2023
3.5.0 1,037 12/22/2022
3.4.1 2,103 11/20/2022
3.4.0 7,180 6/28/2022
3.3.1 494 6/25/2022
3.3.0 4,766 1/27/2022
3.2.1 687 12/18/2021
3.2.0 352 12/18/2021
3.1.0 512 11/28/2021
3.0.0 630 11/9/2021
2.9.5 727 10/26/2021
2.9.4 1,536 7/31/2021
2.9.3 428 7/31/2021
2.9.2 1,054 6/7/2021
2.9.1 2,359 2/24/2021
2.9.0 701 1/15/2021
2.8.2 538 1/8/2021
2.8.1 518 12/27/2020
2.8.0 499 12/27/2020
2.7.1 608 12/25/2020
2.7.0 488 12/24/2020
2.6.0 583 12/17/2020
2.5.0 1,694 11/23/2020
2.4.0 1,704 11/11/2020
2.3.2 758 10/17/2020
2.3.1 603 10/10/2020
2.3.0 495 10/8/2020
2.2.0 646 9/29/2020
2.1.1 984 9/12/2020
2.1.0 561 9/11/2020
2.0.0 835 9/3/2020
1.9.0 914 9/2/2020
1.8.2 2,630 6/8/2020
1.8.1 2,624 12/7/2019
1.8.0 950 10/23/2019
1.7.0 734 10/17/2019
1.6.1 947 9/24/2019
1.6.0 605 8/28/2019
1.5.1 421 8/14/2019
1.5.0 386 8/8/2019
1.4.0 8,474 3/23/2019
1.3.3 3,951 12/6/2018
1.3.2 1,492 9/20/2018
1.3.1 1,088 9/18/2018
1.3.0 1,712 6/7/2018
1.2.0 1,495 4/30/2018
1.1.0 1,342 4/21/2018
1.0.0 1,554 4/18/2018