Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BooleanHostSetting.cs
2{
7 {
8 private bool value = false;
9
14 {
15 }
16
23 public BooleanHostSetting(string Host, string Key, bool Value)
24 : base(Host, Key)
25 {
26 this.value = Value;
27 }
28
32 public bool Value
33 {
34 get => this.value;
35 set => this.value = value;
36 }
37
42 public override object GetValueObject()
43 {
44 return this.value;
45 }
46 }
47}
override object GetValueObject()
Gets the value of the setting, as an object.
BooleanHostSetting(string Host, string Key, bool Value)
Boolean setting object.
Base abstract class for host settings.
Definition: HostSetting.cs:15