Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BinaryDataObject.cs
1using System.Diagnostics.CodeAnalysis;
2
4{
10 public class BinaryDataObject(ushort Tag, byte[] Value) : DataObject(Value)
11 {
15 public override ushort Tag { get; } = Tag;
16
24 public override bool TryParse(byte[] Value, TravelDocumentsClient Client,
25 [NotNullWhen(true)] out IDataObject? Parsed)
26 {
27 Parsed = null;
28 return false;
29 }
30 }
31}
class BinaryDataObject(ushort Tag, byte[] Value)
Binary Data Object. Used when no specific data object type is defined for a given tag.