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