Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SearchEventLogNode.cs
1using System.Threading.Tasks;
2using Waher.Reports;
4
6{
8 {
10 : base("Search Event Log", Parent)
11 {
12 }
13
19 public override Task<ExecuteReport> GetExecuteCommand()
20 {
21 return Task.FromResult<ExecuteReport>(new SearchEventsCommand(this));
22 }
23 }
24}
Abstract base class for commands executing a report.
INode Parent
Parent Node, or null if a root node.
Definition: ReportNode.cs:107
override Task< ExecuteReport > GetExecuteCommand()
Gets the command object to execute a report. If null is returned, the report node is just a group pla...
Abstract base class for server report nodes, requiring admin privileges to be seen and executed.