PinPad.DataEvent Event
2/27/2008
Raised by the service object to present input data from the PIN pad device to the application.
Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)
Syntax
'Declaration
Public Event DataEvent As DataEventHandler
public abstract event DataEventHandler DataEvent
public:
virtual event DataEventHandler^ DataEvent {
void add (DataEventHandler^ value) abstract;
void remove (DataEventHandler^ value) abstract;
}
/** @event */
public abstract void add_DataEvent (DataEventHandler value)
/** @event */
public abstract void remove_DataEvent (DataEventHandler value)
Remarks
The DataEventArgs.Status property is set to one of the following values:
Value |
Meaning |
Success |
The user has entered a PIN and values have been stored into the EncryptedPin and AdditionalSecurityInformation properties. |
Cancel |
The user hit the cancel button on the PIN pad device. |
Timeout |
A timeout condition occurred in the PIN pad device. (Not all PIN pads will report this condition). |
See Also
Reference
PinPad Class
PinPad Members
Microsoft.PointOfService Namespace
DataEventArgs Class
DataEventHandler Delegate