InfoConnect for Unisys
CreditCardRecognized Event (ITerminal)
Example 


This event occurs when an unredacted Primary Account Number (PAN) is copied from the terminal (for example, when the PAN is copied to the clipboard).

This event is enabled by configuring settings on the Setup Information Privacy dialog box. For more information, see "Monitor Credit Card Access" in the InfoConnect .NET API Guide.

Syntax
'Declaration
 
<SuppressMessageAttribute(Category="Microsoft.Design", 
   CheckId="CA1009:DeclareEventHandlersCorrectly", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")>
Event CreditCardRecognized As CreditCardRecognizedEventHandler
'Usage
 
Dim instance As ITerminal
Dim handler As CreditCardRecognizedEventHandler
 
AddHandler instance.CreditCardRecognized, handler
[SuppressMessage(Category="Microsoft.Design", 
   CheckId="CA1009:DeclareEventHandlersCorrectly", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")]
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.

PropertyDescription
DateTimeGets the date and time that the event occurred.  
EventTypeGets a description of the type of access that the credit card number was encountered in (eg. LiveScreen, OfficeTools, ScreenHistory, etc).  
MachineNameGets the machine name (as set up in the system control panel).  
RedactedAccountNumberGets the card number (in redacted format) that was recognized.  
SuccessGets a success return code. (This is Reserved for future use. It currently always returns a success return code.)  
UserDomainNameGets the domain that the user is logged onto, or an empty string if not logged onto a Windows domain.  
UserIdGets the Windows user name of the current user.  
Remarks

This event occurs only when a PAN is copied in its entirety ("in the clear"). It is not fired when only redacted PANs are copied.

Example
This sample writes information on the console when unredacted PAN data is copied from the terminal.
//Set up the event handler to get the data you want to collect.
void terminalVT_CreditCardRecognized(object sender, CreditCardRecognizedEventArgs e)
{
    Console.Write(("\n" + "Credit Card Number Viewed on Screen \n"
    + "Date and Time: " + e.DateTime.ToString() + " \n"
    + "Machine name: " + e.MachineName.ToString() + " \n"
    + "User ID: " + e.UserId.ToString() + " \n"
    + "Card number: " + e.RedactedAccountNumber + "\n"));
}
//Attach the event handler to the Terminal object's CreditCardRecognized event,
//where terminalVT is an instance of Terminal.
terminalVT.CreditCardRecognized += new CreditCardRecognizedEventHandler(terminalVT_CreditCardRecognized);
See Also