Table of Contents

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

int

ParsedDocument

The parsed known document format (if parsed successfully).

public required GenericDocument ParsedDocument { get; init; }

Property Value

GenericDocument

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

string

TextWithExtension

Recognized barcode value with extension (if available).

public required string TextWithExtension { get; init; }

Property Value

string

Type

Recognized barcode symbology.

public required BarcodeFormat? Type { get; init; }

Property Value

BarcodeFormat?

Methods

FromNative(BarcodeItem)

public static BarcodeItem FromNative(BarcodeItem source)

Parameters

source BarcodeItem

Returns

BarcodeItem

ToNative()

public BarcodeItem ToNative()

Returns

BarcodeItem