Class BarcodeItem
- Namespace
- ScanbotSDK.MAUI.Barcode
- Assembly
- ScanbotSDK.Shared.dll
Data about the scanned barcode.
public class BarcodeItem
- Inheritance
-
BarcodeItem
- Inherited Members
Properties
Count
Number of recognized barcodes of this symbology and value.
public required int Count { get; init; }
Property Value
ParsedDocument
The parsed known document format (if parsed successfully).
public required GenericDocument ParsedDocument { get; init; }
Property Value
RawBytes
Representation of the raw data that is contained the recognized barcode.
public required byte[] RawBytes { get; init; }
Property Value
- byte[]
Text
Recognized value of the barcode.
public required string Text { get; init; }
Property Value
TextWithExtension
Recognized barcode value with extension (if available).
public required string TextWithExtension { get; init; }
Property Value
Type
Recognized barcode symbology.
public required BarcodeFormat? Type { get; init; }
Property Value
Methods
FromNative(BarcodeItem)
public static BarcodeItem FromNative(BarcodeItem source)
Parameters
source
BarcodeItem
Returns
ToNative()
public BarcodeItem ToNative()