Walter.Web.FireWall
AllowGuardAction Property
Example 
Walter.Web.FireWall Assembly > Walter.Web.FireWall.EventArguments Namespace > GuardActionEventArgs Class : AllowGuardAction Property
Set to true if you would like to allow the firewall to execute the recommended guard action, leave it to the default false if you like to prevent it from happening.
Syntax
public bool AllowGuardAction {get; set;}
Remarks
By not setting it to true you will also say that no issue is detected and this can harm other protection pattern recognitions. If you use events, then you are responsible to set it to true and allowing the firewall to block the request
Example
You can interact with the action based on your own application work-flows. the bellow sample shows that users that are found to be spoofing are blocked for at-least 1 year
private void FireWall_OnGuardAction(object sender, GuardActionEventArgs e)
            {
                if (e.Page.User.AsFirewallUser().IsSpoofing)
                {
                    foreach (var item in e.Page.Incidents())
                    {
                        item.Expires = Inverse.Clock().UtcNow.AddDays(300);
                    }
                }
                e.AllowGuardAction = true;
            }
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

GuardActionEventArgs Class
GuardActionEventArgs Members