Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BiometricInformationTemplates.cs
2
4{
9 {
14 : base([])
15 {
16 }
17
26 : base(Value)
27 {
28 this.NrInstances = NrInstances;
29 this.Templates = Templates;
30 }
31
35 public int NrInstances { get; }
36
40 public override ushort Tag => 0x7f61;
41
46
53 public override IDataObject Create(byte[] Value, IDataObject[] Inner, TravelDocumentsClient Client)
54 {
57
58 foreach (IDataObject Object in Inner)
59 {
60 if (Object is NumberOfInstances NumberOfInstances2)
61 NumberOfInstances = NumberOfInstances2;
62 else if (Object is BiometricInformationTemplate Template)
63 Templates.Add(Template);
64 }
65
66 return new BiometricInformationTemplates(Value, NumberOfInstances?.Count ?? 0, [.. Templates]);
67 }
68 }
69}
Biometric Information Template. Reference: §4.7.2.1, EF.COM, ICAO Doc 9303-10, Table 44.
Biometric Information Template Group Template. Reference: §4.7.2.1, EF.COM, ICAO Doc 9303-10,...
override IDataObject Create(byte[] Value, IDataObject[] Inner, TravelDocumentsClient Client)
Creates a parsed instance of the data object.
BiometricInformationTemplates()
Biometric Information Template Group Template. Reference: §4.7.2.1, EF.COM, ICAO Doc 9303-10,...
BiometricInformationTemplates(byte[] Value, int NrInstances, BiometricInformationTemplate[] Templates)
Biometric Information Template Group Template. Reference: §4.7.2.1, EF.COM, ICAO Doc 9303-10,...
BiometricInformationTemplate?[] Templates
Biometric information templates
Abstract base class for data objects that contain nested data objects.
A chunked list is a linked list of chunks of objects of type T .
Definition: ChunkedList.cs:54