Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Int64Setting.cs
1
using
System;
2
using
Waher.Persistence.Attributes
;
3
4
namespace
Waher.Runtime.Settings.SettingObjects
5
{
9
public
class
Int64Setting
:
Setting
10
{
11
private
long
value = 0;
12
16
public
Int64Setting
()
17
{
18
}
19
25
public
Int64Setting
(
string
Key
,
long
Value
)
26
: base(
Key
)
27
{
28
this.value =
Value
;
29
}
30
34
[DefaultValue(0L)]
35
public
long
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
}
Waher.Runtime.Settings.SettingObjects.Int64Setting
Int64 setting object.
Definition:
Int64Setting.cs:10
Waher.Runtime.Settings.SettingObjects.Int64Setting.Value
long Value
Value.
Definition:
Int64Setting.cs:36
Waher.Runtime.Settings.SettingObjects.Int64Setting.Int64Setting
Int64Setting()
Int64 setting object.
Definition:
Int64Setting.cs:16
Waher.Runtime.Settings.SettingObjects.Int64Setting.GetValueObject
override object GetValueObject()
Gets the value of the setting, as an object.
Definition:
Int64Setting.cs:45
Waher.Runtime.Settings.SettingObjects.Int64Setting.Int64Setting
Int64Setting(string Key, long Value)
Int64 setting object.
Definition:
Int64Setting.cs:25
Waher.Runtime.Settings.SettingObjects.Setting
Base abstract class for settings.
Definition:
Setting.cs:14
Waher.Runtime.Settings.SettingObjects.Setting.Key
string Key
Key name.
Definition:
Setting.cs:48
Waher.Persistence.Attributes
Definition:
ArchivingTimeAttribute.cs:4
Waher.Runtime.Settings.SettingObjects
Definition:
BooleanSetting.cs:10
IoTGateway
Runtime
Waher.Runtime.Settings
SettingObjects
Int64Setting.cs
Generated by
1.9.5