Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
LockedObjects.cs
1using System.Threading.Tasks;
2using Waher.Reports;
4
6{
11 {
17 : base("LockedObjects", Parent)
18 {
19 }
20
26 public override Task<ExecuteReport> GetExecuteCommand()
27 {
28 return Task.FromResult<ExecuteReport>(new LockedObjectsCommand(this));
29 }
30 }
31}
Abstract base class for commands executing a report.
INode Parent
Parent Node, or null if a root node.
Definition: ReportNode.cs:107
LockedObjects(PerformanceRoot Parent)
Report on locked objects.
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.