Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DateTimeHostSetting.cs
1using System;
3
5{
10 {
11 private DateTime value = DateTime.MinValue;
12
17 {
18 }
19
26 public DateTimeHostSetting(string Host, string Key, DateTime Value)
27 : base(Host, Key)
28 {
29 this.value = Value;
30 }
31
35 [DefaultValueDateTimeMinValue]
36 public DateTime Value
37 {
38 get => this.value;
39 set => this.value = value;
40 }
41
46 public override object GetValueObject()
47 {
48 return this.value;
49 }
50 }
51}
override object GetValueObject()
Gets the value of the setting, as an object.
DateTimeHostSetting(string Host, string Key, DateTime Value)
DateTime setting object.
Base abstract class for host settings.
Definition: HostSetting.cs:15