Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DoubleHostSetting.cs
2
4{
9 {
10 private double value = 0.0;
11
16 {
17 }
18
25 public DoubleHostSetting(string Host, string Key, double Value)
26 : base(Host, Key)
27 {
28 this.value = Value;
29 }
30
34 [DefaultValue(0.0)]
35 public double Value
36 {
37 get => this.value;
38 set => this.value = value;
39 }
40
45 public override object GetValueObject()
46 {
47 return this.value;
48 }
49 }
50}
DoubleHostSetting(string Host, string Key, double Value)
Double setting object.
override object GetValueObject()
Gets the value of the setting, as an object.
Base abstract class for host settings.
Definition: HostSetting.cs:15