Delegate used for scan events
Namespace: Scandit.BarcodePickerAssembly: Scandit.BarcodePicker (in Scandit.BarcodePicker.dll) Version: 5.6.0.2 (5.6.0.2)
Syntax public delegate void DidScanDelegate(
ScanSession session
)
Public Delegate Sub DidScanDelegate (
session As ScanSession
)
public delegate void DidScanDelegate(
ScanSession^ session
)
type DidScanDelegate =
delegate of
session : ScanSession -> unit
Parameters
- session
- Type: Scandit.BarcodePickerScanSession
The current scan session, giving access to recognized codes etc.
Remarks
The did scan delegate is used for signaling when barcodes have been recognized, e.g. with
the
DidScan event. The recognized barcodes are available from the
session parameter.
See Also