Walter.Web.FireWall.ILogger 2025.9.1452

Prefix Reserved
dotnet add package Walter.Web.FireWall.ILogger --version 2025.9.1452
                    
NuGet\Install-Package Walter.Web.FireWall.ILogger -Version 2025.9.1452
                    
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="Walter.Web.FireWall.ILogger" Version="2025.9.1452" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Walter.Web.FireWall.ILogger" Version="2025.9.1452" />
                    
Directory.Packages.props
<PackageReference Include="Walter.Web.FireWall.ILogger" />
                    
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 Walter.Web.FireWall.ILogger --version 2025.9.1452
                    
#r "nuget: Walter.Web.FireWall.ILogger, 2025.9.1452"
                    
#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 Walter.Web.FireWall.ILogger@2025.9.1452
                    
#: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=Walter.Web.FireWall.ILogger&version=2025.9.1452
                    
Install as a Cake Addin
#tool nuget:?package=Walter.Web.FireWall.ILogger&version=2025.9.1452
                    
Install as a Cake Tool

Generate log for all detected exploids

To log exploits detected by the firewall use the following extension method

services.AddFireWall(FireWallTrial.License, FireWallTrial.DomainKey
    , domainName: new Uri("https://www.your-domain.com", UriKind.Absolute)
    , options =&gt;
    {
        //your firewall options
    })
    .UseILoggerLogging(options: option =&gt;
     {
        option.Level = Microsoft.Extensions.Logging.LogLevel.Information;
        option.NameSpace = "MyApplication.FireWall.Logger";
     });

You can specify the level a detection gets as well as the name-space to use when reporting allowing you to use structured filtering on the loggers output.

Product Compatible and additional computed target framework versions.
.NET 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.  net8.0-windows7.0 is compatible.  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.  net9.0-windows7.0 is compatible.  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

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2025.9.1452 246 9/28/2025
2025.8.13.1223 235 8/13/2025
2025.7.30.1003 175 7/30/2025
2025.7.10.1347 218 7/10/2025
2025.6.30.1407 214 7/1/2025
2025.6.12.1057 395 6/12/2025
2025.4.17.1816 301 4/17/2025
2025.3.13.1323 232 3/13/2025
2025.2.26.1642 208 2/26/2025
2025.2.25.1033 180 2/26/2025
2025.2.24.1556 174 2/25/2025
2025.2.16.1149 197 2/19/2025
2025.2.15.1316 207 2/15/2025
2025.1.16.1410 194 1/16/2025
2025.1.4.1941 207 1/4/2025
2025.1.2.1544 199 1/3/2025
2024.12.14.838 203 12/14/2024
2024.12.9.1107 205 12/13/2024
Loading failed

16 Feb 2025
- Update to .Net 9 SP1

12 Feb 2025
- Update nuget packages

16 September 2020
- initial release for the ILogger Extension method.