Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
References.cs
1using System.Threading.Tasks;
2using System.Xml;
4
6{
11 {
15 public References()
16 : base()
17 {
18 }
19
26 public References(XmlElement Xml, WafAction Parent, WebApplicationFirewall Document)
27 : base(Xml, Parent, Document)
28 {
29 }
30
34 public override string LocalName => nameof(References);
35
43 public override WafAction Create(XmlElement Xml, WafAction Parent, WebApplicationFirewall Document) => new References(Xml, Parent, Document);
44
50 public override Task<WafResult?> Review(ProcessingState State)
51 {
52 return Task.FromResult<WafResult?>(null);
53 }
54 }
55}
Contains the current state of a review process.
Contains a set of actions that can be referenced from other actions.
Definition: References.cs:11
override Task< WafResult?> Review(ProcessingState State)
Reviews the processing state, and returns a WAF result, if any.
Definition: References.cs:50
override WafAction Create(XmlElement Xml, WafAction Parent, WebApplicationFirewall Document)
Creates a WAF action from its XML definition.
References()
Contains a set of actions that can be referenced from other actions.
Definition: References.cs:15
References(XmlElement Xml, WafAction Parent, WebApplicationFirewall Document)
Contains a set of actions that can be referenced from other actions.
Definition: References.cs:26
override string LocalName
XML Local Name for the XML element defining the action.
Definition: References.cs:34
Abstract base class for WAF actions that has tags.
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.
WafResult
Actions that a Web Server can take after reviewing a request.