Walter.Web.FireWall
DisableFirewallAttribute Class
Members  Example 
Walter.Web.FireWall Assembly > Walter.Web.FireWall.Annotations Namespace : DisableFirewallAttribute Class
Disables all rules and validations on an endpoint(s) by the firewall, basically it's an Always-Off for an endpoint
Syntax
public sealed class DisableFirewallAttribute : System.Attribute 
Remarks
using this attribute will expose the endpoint to DOS, CRS and Injection type of attacks
Example
[DisableFirewall]
[ResponseCache(Duration = 60,VaryByQueryKeys = new[] { "reason" })]
public IActionResult Blocked(BlockingReasons reason)
{
return View(reason);
}
Inheritance Hierarchy

System.Object
   System.Attribute
      Walter.Web.FireWall.Annotations.DisableFirewallAttribute

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

DisableFirewallAttribute Members
Walter.Web.FireWall.Annotations Namespace