Resource Base
Table of contents

BarcodeResult

Class BarcodeResult. The return value when a barcode is detected. It stores the barcode information including barcode text and barcode formats.

namespace DCVXamarin
{
    public class BarcodeResult
    {
        // The barcode text.
        public string BarcodeText { get; set; }

        // The barcode decoding result in bytes.
        public byte[] BarcodeBytes { get; set; }

        // Barcode type in string.
        public string BarcodeFormatString { get; set; }

        // The corresponding localization result.
        public BarcodeLocationResult BarcodeLocationResult { get; set; }
    }
}

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article:

latest version

    Change +