MRZScanResult
MRZScanResult is a result class that contains the parsed MRZ information and the corresponding additional information.
Definition
Assembly: Dynamsoft.MRZScannerBundle.Maui
Namespace: Dynamsoft.MRZScannerBundle.Maui
class MRZScanResult
Properties
| Property | Type | Description |
|---|---|---|
Data |
MRZData? | Represents the parsed MRZ data. |
ResultStatus |
EnumResultStatus | Represents the result status, which can be finished, canceled or exception. |
ErrorCode |
int | Represents the error code should something go wrong during the MRZ scanning process. |
ErrorString |
string | Represents the error message associated with the error code should something go wrong during the MRZ scanning process. |
Data
Represents the parsed MRZ information as a MRZData object.
MRZData? Data {get; set;};
See also
ResultStatus
Represents the status of the result, which can be finished, canceled or exception.
EnumResultStatus ResultStatus {get; set;};
Finished: The MRZ scanning is finished.Canceled: The MRZ scanning activity is closed before the process is finished.Exception: Failed to start MRZ scanning or an error occurs when scanning the MRZ.
ErrorCode
Represents the error code should something go wrong during the MRZ scanning process.
int ErrorCode {get; set;};
ErrorString
Represents the error message associated with the error code should something go wrong during the MRZ scanning process.
string? ErrorString {get; set;};