Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Repair.cs
2{
6 public class Repair : Analyze
7 {
11 public Repair()
12 {
13 }
14
18 public override string Name => "Repair";
19
23 public override string[] Aliases => new string[] { "RepairDB" };
24
28 protected override bool AllowRepair => true;
29
33 public override string[] HelpParagraphs => new string[] { "Repairs the database for inconsistencies." };
34 }
35}
override bool AllowRepair
If the database is allowed to be repeaired, if errors are found.
Definition: Repair.cs:28
override string[] HelpParagraphs
Markdown description of syntax.
Definition: Repair.cs:33
override string Name
Command name
Definition: Repair.cs:18
override string[] Aliases
Optional set of aliases. Can be null.
Definition: Repair.cs:23