DecodedBarcodesResult Class
The DecodedBarcodesResult class represents the result of a barcode reading process. It provides access to information about the decoded barcodes, the source image, and any errors that occurred during the barcode reading process.
Definition
Namespace: Dynamsoft.BarcodeReader.Maui
Assembly: Dynamsoft.BarcodeReader.Maui
class DecodedBarcodesResult : CapturedResultBase
Properties
| Property | Type | Description |
|---|---|---|
Items |
BarcodeResultItem[] | Get an array of BarcodeResultItems, which are the basic unit of the captured results. |
The following properties are inherited from CapturedResultBase:
| Property | Type | Description |
|---|---|---|
OriginalImageHashId |
string | Represents the hash id of the original image. |
RotationTransformMatrix |
Matrix | Represents the rotation transformation matrix of the original image relative to the rotated image. |
ErrorCode |
int | Represents the error code of this result. |
ErrorMessage |
string | Represents the error message of this result. |
Items
A list of BarcodeResultItem, which is the basic unit of the captured results.
BarcodeResultItem[]? Items { get; }