MRZData
MRZData is a result class that contains the parsed MRZ information.
Definition
Assembly: Dynamsoft.MRZScannerBundle.Maui
Namespace: Dynamsoft.MRZScannerBundle.Maui
class MRZData
Properties
| Property | Type | Description |
|---|---|---|
FirstName |
string | Represents the first name of the user of the MRZ document. |
LastName |
string | Represents the last name of the user of the MRZ document. |
Sex |
string | Represents the sex of the user of the MRZ document. |
IssuingState |
string | Represents the issuing state of the MRZ document. |
Nationality |
string | Represents the nationality of the user of the MRZ document. |
DateOfBirth |
string | Represents the date of birth of the user of the MRZ document. |
DateOfExpire |
string | Represents the expiry date of the MRZ document. |
DocumentType |
string | Represents the type of MRZ document. |
DocumentNumber |
string | Represents the MRZ document number. |
Age |
int | Represents the age of the user of the MRZ document. |
MrzText |
string | Represents the raw text of the MRZ. |
FirstName
Represents the first name of the user of the MRZ document.
string FirstName { get; set; };
LastName
Represents the last name of the user of the MRZ document.
string LastName { get; set; };
Sex
Represents the sex of the user of the MRZ document.
string Sex { get; set; };
IssuingState
Represents the issuing state of the MRZ document.
string IssuingState { get; set; };
Nationality
Represents the nationality of the user of the MRZ document.
string Nationality { get; set; };
DateOfBirth
Represents the date of birth of the user of the MRZ document.
string DateOfBirth { get; set; };
DateOfExpire
Represents the expiry date of the MRZ document.
string DateOfExpire { get; set; };
DocumentType
Represents the type of MRZ document.
string DocumentType { get; set; };
DocumentNumber
Represents the MRZ document number.
string DocumentNumber { get; set; };
Age
Represents the age of the user of the MRZ document.
int Age { get; set; };
MrzText
Represents the raw text of the MRZ.
string MrzText { get; set; };