Debology.Debby.Modules.System
ISystemModule Interface
The API for interacting with the System module. This can be accessed via System.
csharp
public interface ISystemModuleMethods
ISystemModule.AddValue(string, string, AdjustableValue<string>) Method
Adds a new value to the System module.
csharp
void AddValue(string category, string name, Debology.Debby.Modules.Adjust.AdjustableValue<string> value);Parameters
category System.String
The category of the value
name System.String
The name of the value
value Debology.Debby.Modules.Adjust.AdjustableValue<System.String>
The Adjustable value to add
ISystemModule.AddValue(string, string, string) Method
Adds a new value to the System module.
csharp
void AddValue(string category, string name, string value);Parameters
category System.String
The category of the value
name System.String
The name of the value
value System.String
The raw string value to add
ISystemModule.Open() Method
Opens the System module.
csharp
void Open();