Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DisplayedPortrait.cs
1using System.Diagnostics.CodeAnalysis;
2
4{
8 public class DisplayedPortrait : DataObject
9 {
14 : base([])
15 {
16 }
17
22 public DisplayedPortrait(byte[] Value)
23 : base(Value)
24 {
25 }
26
30 public override ushort Tag => 0x5f40;
31
39 public override bool TryParse(byte[] Value, TravelDocumentsClient Client,
40 [NotNullWhen(true)] out IDataObject? Parsed)
41 {
42 Parsed = new DisplayedPortrait(Value);
43 return true;
44 }
45 }
46}
override bool TryParse(byte[] Value, TravelDocumentsClient Client, [NotNullWhen(true)] out IDataObject? Parsed)
Tries to parse a binary representation of the data object.