Barcode Check

Defined in namespace Scandit.DataCapture.Barcode.Check.Capture

BarcodeCheck
class BarcodeCheck

Added in version 7.2.0

Capture mode that implements BarcodeCheck.

BarcodeCheck()
BarcodeCheck(DataCaptureContext context, BarcodeCheckSettings settings)

Added in version 7.2.0

Construct a new BarcodeCheck instance with the provided settings.

Feedback
BarcodeCheckFeedback Feedback { get;set; }

Added in version 7.2.0

Instance of BarcodeCheckFeedback that is used by the barcode scanner to notify users about Check events.

The default instance of the Feedback will have both sound and vibration enabled. A default beep sound will be used for the sound.

RecommendedCameraSettings
static CameraSettings RecommendedCameraSettings { get; }

Added in version 7.2.0

Returns the recommended camera settings for use with barcode check.

ApplySettingsAsync()
Task ApplySettingsAsync(BarcodeCheckSettings settings)

Added in version 7.2.0

Asynchronously applies the new settings to the barcode scanner. If the scanner is currently running, the task will complete when the next frame is processed, and will use the new settings for that frame. If the scanner is currently not running, the task will complete as soon as the settings have been stored and won’t wait until the next frame is going to be processed.

AddListener()
void AddListener(IBarcodeCheckListener listener)

Added in version 7.2.0

Adds a listener to receive barcode check events.

In case the same listener is already observing this instance, calling this method will not add the listener again.

RemoveListener()
void RemoveListener(IBarcodeCheckListener listener)

Added in version 7.2.0

Removes a previously added listener from this BarcodeCheck instance.

In case the listener is not currently observing this instance, calling this method has no effect.

SessionUpdated
event EventHandler<BarcodeCheckEventArgs> SessionUpdated

Added in version 7.2.0

Occurs whenever the session has been updated.