Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
WafActionWithName.cs
1using System.Xml;
3
5{
9 public abstract class WafActionWithName : WafAction
10 {
14 protected readonly StringAttribute name;
15
20 : base()
21 {
22 }
23
31 : base(Xml, Parent, Document)
32 {
33 this.name = new StringAttribute(Xml, "name");
34 }
35 }
36}
Abstract base class for WAF actions with a name.
readonly StringAttribute name
Name attribute
WafActionWithName()
Abstract base class for WAF actions with a name.
WafActionWithName(XmlElement Xml, WafAction Parent, WebApplicationFirewall Document)
Abstract base class for WAF actions with a name.
Abstract base class for Web Application Firewall actions.
Definition: WafAction.cs:17
WebApplicationFirewall Document
Web Application Firewall document.
Definition: WafAction.cs:60
Web Application Firewall for HttpServer.