DataEventHandler Delegate

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.

Remarks

The declaration of your event handler must have the same parameters as the DataEventHandler delegate declaration.

See Also

Reference

Microsoft.PointOfService Namespace