It represents the method that will handle the BarcodeFound event of a BarcodeReader 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 delegate void BarcodeFoundEventHandler(
	Object sender,
	BarcodeFoundEventArgs e
)
Visual Basic
Public Delegate Sub BarcodeFoundEventHandler ( _
	sender As Object, _
	e As BarcodeFoundEventArgs _
)
Visual C++
public delegate void BarcodeFoundEventHandler(
	Object^ sender, 
	BarcodeFoundEventArgs^ e
)

Parameters

sender
Type: System..::..Object
The source of the event.
e
Type: Neodynamic.SDK.BarcodeReader..::..BarcodeFoundEventArgs
A BarcodeFoundEventArgs that contains the event data.

See Also