Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MetaDataValue.cs
2
4{
8 [TypeName(TypeNameSerialization.None)]
9 public class MetaDataValue
10 {
11 private string name = string.Empty;
12 private object value = null;
13
18 {
19 }
20
24 [DefaultValueStringEmpty]
25 public string Name
26 {
27 get => this.name;
28 set => this.name = value;
29 }
30
34 [DefaultValueNull]
35 public object Value
36 {
37 get => this.value;
38 set => this.value = value;
39 }
40
42 public override string ToString()
43 {
44 return this.name + "=" + this.value?.ToString();
45 }
46 }
47}
Class representing a meta-data value.
MetaDataValue()
Class representing a persisted tag.
TypeNameSerialization
How the type name should be serialized.