AzRUtil.Web 10.2.0

dotnet add package AzRUtil.Web --version 10.2.0
                    
NuGet\Install-Package AzRUtil.Web -Version 10.2.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="AzRUtil.Web" Version="10.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AzRUtil.Web" Version="10.2.0" />
                    
Directory.Packages.props
<PackageReference Include="AzRUtil.Web" />
                    
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 AzRUtil.Web --version 10.2.0
                    
#r "nuget: AzRUtil.Web, 10.2.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.
#:package AzRUtil.Web@10.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AzRUtil.Web&version=10.2.0
                    
Install as a Cake Addin
#tool nuget:?package=AzRUtil.Web&version=10.2.0
                    
Install as a Cake Tool

AzRUtil.Web

ASP.NET Core web utilities with HTTP helpers, middleware, cookie management, and user agent parsing.

NuGet Version License

?? Installation

dotnet add package AzRUtil.Web

Or via Package Manager:

Install-Package AzRUtil.Web

?? Target Framework

  • .NET 10

? Features

  • HTTP Helpers - HttpContext utilities and extensions
  • Middleware - Exception handling and response time middleware
  • Cookie Management - Add, update, remove cookies
  • User Agent Parsing - Browser, OS, and device detection
  • JWT Authentication - Bearer token authentication support
  • IP Address Extraction - Client IP detection
  • Language Detection - User language preferences

?? Dependencies

Package Version
AzRUtil.Csharp 2.2.0
Microsoft.AspNetCore.Authentication.JwtBearer 10.0.1
Microsoft.AspNetCore.Mvc.NewtonsoftJson 10.0.1
UAParser 3.1.47

?? Quick Start

using AzRUtil.Web.Helpers;
using AzRUtil.Web.Middlewares;

// In Program.cs or Startup.cs
app.UseMiddleware<ExceptionMiddleware>();
app.UseMiddleware<ResponseTimeMiddleware>();

// HTTP Helper usage
var userIp = HttpHelper.GetUserIp;
var userAgent = HttpHelper.GetUserAgentInfo;
var platform = request.GetUserPlatform();

// Cookie management
HttpHelper.AddCookie("name", "value", DateTime.Now.AddDays(7));
HttpHelper.RemoveCookie("name");

Middleware

// Exception Middleware - Global error handling
app.ConfigureCustomExceptionMiddleware();

// Response Time Middleware - Adds X-Response-Time-ms header
app.UseMiddleware<ResponseTimeMiddleware>();

User Agent Detection

// Get client info
var clientInfo = request.GetClientInfo();
var browser = $"{clientInfo.UA.Family} {clientInfo.UA.Major}";
var os = request.GetUserPlatform(); // "Windows 10", "Android 13", etc.

?? Documentation

For full API documentation, visit: http://ashiquzzaman.me/project/AzRUtil.Extender

?? License

PROPRIETARY SOFTWARE - See LICENSE.txt

  • ? You may use the compiled NuGet package
  • ? You may NOT access, copy, or use source code
  • ? No warranty or guarantee provided
  • ? No liability accepted for any damages

?? Contact

For licensing inquiries: ashiquzzaman@outlook.com


� Ashiquzzaman. All Rights Reserved.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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 (3)

Showing the top 3 NuGet packages that depend on AzRUtil.Web:

Package Downloads
AzRUtil.Web.Mvc

ASP.NET Core MVC utilities with Tag Helpers, HTML extensions, pagination controls, and base controller for Razor Pages.

AzRUtil.Web.Api

ASP.NET Core Web API utilities with standardized responses, validation filters, base controller, and pagination support.

AzRUtil.Web.Rdlc

RDLC report generation utilities for ASP.NET Core MVC and Web API applications with PDF, Excel, and Word export support.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.2.0 107 1/8/2026
10.1.2 77 1/8/2026
10.1.1 124 1/2/2026
10.1.0 83 1/2/2026
8.0.1 277 3/2/2024
7.0.1 459 1/14/2023
6.1.5 438 1/14/2023
6.1.2 613 8/22/2022
6.1.1 540 8/18/2022
6.1.0 555 8/14/2022

Web utilities with middleware and HTTP helpers.