Click or drag to resize

FinancialCard Class

This class represents the parsed magnetic stripe data from a financial (credit) card. See http://en.wikipedia.org/wiki/Magnetic_stripe_card">http://en.wikipedia.org/wiki/Magnetic_stripe_card
Inheritance Hierarchy
SystemObject
  EasyScriptAPIFinancialCard

Namespace:  EasyScriptAPI
Assembly:  EasyScriptAPI (in EasyScriptAPI.dll) Version: 3.5.29.0 (3.5.29.0)
Syntax
public class FinancialCard

The FinancialCard type exposes the following members.

Constructors
  NameDescription
Public methodFinancialCard
Initializes a new instance of the FinancialCard class
Top
Methods
  NameDescription
Public methodGetIssuer
Gets the card issuer determined based on card patterns
Public methodGetTrackOne
Returns the track one data
Public methodGetTrackTwo
Gets the track two data
Public methodIsNumberValid
Gets whether or not the card passes Luhn's algorithm
Public methodStatic memberParse
This method takes the raw card data from the swipe and attempts to extract financial card data.
Public methodToString
Returns a string representation of this object
(Overrides ObjectToString.)
Public methodStatic memberVerifyCardChecksum
This method takes a card number and applies Luhn's algorithm to verify the card checksum. This method can detect minor transpositions and obviously invalid card numbers, but it cannot detect fake credit card numbers. See http://en.wikipedia.org/wiki/Luhn_algorithm
Top
See Also