Table of contents
Swift
Objective-C

BarcodeScanResult

BarcodeScanResult is a result class that contains all the decoded barcodes.

Definition

Assembly: Dynamsoft.BarcodeReaderBundle.Maui

Namespace: Dynamsoft.BarcodeReaderBundle.Maui

class BarcodeScanResult

Properties

Property Type Description
Barcodes BarcodeResultItem[] Represents all the decoded barcodes in an array of BarcodeResultItem.
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 barcode scanning process.
ErrorString string Represents the error message associated with the error code should something go wrong during the barcode scanning process.

Barcodes

Represents all the decoded barcodes in an array of BarcodeResultItem.

BarcodeResultItem[]? Barcodes {get; set;}

See also

ResultStatus

Represents the status of the result, which can be finished, canceled or exception.

EnumResultStatus ResultStatus {get; set;};
  • Finished: The barcode scanning is finished.
  • Canceled: The barcode scanning activity is closed before the process is finished.
  • Exception: Failed to start barcode scanning or an error occurs when scanning the barcode.

ErrorCode

Represents the error code should something go wrong during the barcode scanning process.

int ErrorCode {get; set;};

ErrorString

Represents the error message associated with the error code should something go wrong during the barcode scanning process.

string? ErrorString {get; set;};

This page is compatible for: