Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IDataObject.cs
1using System.Diagnostics.CodeAnalysis;
2
4{
10 public interface IDataObject
11 {
15 ushort Tag { get; }
16
20 byte[] Value { get; }
21
29 bool TryParse(byte[] Value, TravelDocumentsClient Client, [NotNullWhen(true)] out IDataObject? Parsed);
30 }
31}
bool TryParse(byte[] Value, TravelDocumentsClient Client, [NotNullWhen(true)] out IDataObject? Parsed)
Tries to parse a binary representation of the data object.