DataEventHandler Delegate (POS for .NET v1.12 SDK Documentation)
2/27/2008
Defines the method that handles the DataEventArgs event.
Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)
Syntax
'Declaration
Public Delegate Sub DataEventHandler ( _
sender As Object, _
e As DataEventArgs _
)
public delegate void DataEventHandler (
Object sender,
DataEventArgs e
)
public delegate void DataEventHandler (
Object^ sender,
DataEventArgs^ e
)
/** @delegate */
public delegate void DataEventHandler (
Object sender,
DataEventArgs e
)
Parameters
- sender
The source of the event.
- e
A DataEventArgs that contains the event data.
Remarks
The declaration of your event handler must have the same parameters as the DataEventHandler delegate declaration.