Walter.Web.FireWall
Data Property (FireWallIncidentEventArgs)
Example 
Walter.Web.FireWall Assembly > Walter.Web.FireWall.EventArguments Namespace > FireWallIncidentEventArgs Class : Data Property
Access the data that caused, and is considered to be out of allowed range for the request as specified on the endpoint's configuration.
Syntax

Property Value

The data.
Example
before going live you can use the event to document rules that are capturing false positives.
private void MyFireWall_OnIncident(object? sender, Walter.Web.FireWall.EventArguments.FireWallIncidentEventArgs e)
             {
                 _logger?.Lazy().LogCritical("{Method} {page} : {route}\n   {rule}:{RuleNr}\n   Reasons:{Reason}\n   {data}"
                     , e.Page.Method
                     , e.Page.OriginalUrl.AbsolutePath
                     , e.Page.FireWallRoute
                     , e.StackEntry.Rule
                     , e.StackEntry.RuleNr
                     , e.StackEntry.Reason
                     , string.Join("\n   ", e.Data.Select(s => $"{s.Key}:{s.Value}"))
                     );
            
                 e.AllowRaiseIncident = false;
             }
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FireWallIncidentEventArgs Class
FireWallIncidentEventArgs Members