'Declaration
Event CreditCardRecognized As CreditCardRecognizedEventHandler
'Usage
Dim instance As IAlcTerminal Dim handler As CreditCardRecognizedEventHandler AddHandler instance.CreditCardRecognized, handler
event CreditCardRecognizedEventHandler CreditCardRecognized
Event Data
The event handler receives an argument of type CreditCardRecognizedEventArgs containing data related to this event. The following CreditCardRecognizedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
DateTime | Gets the date and time that the event occurred. |
EventType | Gets a description of the type of access that the credit card number was encountered in (eg. LiveScreen, OfficeTools, ScreenHistory, etc). |
MachineName | Gets the machine name (as set up in the system control panel). |
RedactedAccountNumber | Gets the card number (in redacted format) that was recognized. |
Success | Gets a success return code. (This is Reserved for future use. It currently always returns a success return code.) |
UserDomainName | Gets the domain that the user is logged onto, or an empty string if not logged onto a Windows domain. |
UserId | Gets the Windows user name of the current user. |
See Also