It starts the scan process which will look for the specified barcode symbologies on the specified array of bytes object.

Namespace: Neodynamic.SDK.BarcodeReader
Assembly: Neodynamic.SDK.BarcodeReader (in Neodynamic.SDK.BarcodeReader.dll) Version: 1.0.2000.0 (1.0.2000.0)

Syntax

C#
public List<BarcodeScanResult> Scan(
	byte[] imageBuffer
)
Visual Basic
Public Function Scan ( _
	imageBuffer As Byte() _
) As List(Of BarcodeScanResult)
Visual C++
public:
List<BarcodeScanResult^>^ Scan(
	array<unsigned char>^ imageBuffer
)

Parameters

imageBuffer
Type: array<System..::..Byte>[]()[][]
The array of bytes object which contains some barcode symbols.

Return Value

It returns a list of BarcodeScanResult objects containing information about the detected barcodes. An empty list will indicate that no barcodes were found by the reader.

See Also