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