Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Profession.cs
2{
6 public class Profession : StringObject
7 {
11 public Profession()
12 : base()
13 {
14 }
15
21 public Profession(byte[] Value, string StringValue)
22 : base(Value, StringValue)
23 {
24 }
25
29 public override ushort Tag => 0x5f13;
30
37 public override StringObject Create(byte[] Value, string StringValue)
38 {
39 return new Profession(Value, StringValue);
40 }
41 }
42}
override StringObject Create(byte[] Value, string StringValue)
Creates an instance of the string-valued data object.
Definition: Profession.cs:37
Profession(byte[] Value, string StringValue)
Profession
Definition: Profession.cs:21
Abstract base class for string-valued objects.
Definition: StringObject.cs:10