Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MrzExtensions.cs
1using System.Diagnostics.CodeAnalysis;
2
4{
8 public static class MrzExtensions
9 {
17 public static bool ParseMrz(string MRZ, [NotNullWhen(true)] out DocumentInformation? Info)
18 {
19 return MrzValidator.TryParse(MRZ, out Info);
20 }
21 }
22}
Contains parsed information from a machine-readable document information string.
Contains MRZ-related Extensions for Machine-Readable Travel Documents.
Definition: MrzExtensions.cs:9
static bool ParseMrz(string MRZ, [NotNullWhen(true)] out DocumentInformation? Info)
Derives Basic Access Control Keys from the second row of the Machine-Readable string in passport (MRZ...
Provides shared MRZ parsing and validation services for OCR and NFC flows.
static bool TryParse(string Mrz, [NotNullWhen(true)] out DocumentInformation? Info)
Attempts to parse MRZ text into document information.