CardParserParseFinancialCard Method |
This method takes the strings from each track and constructs a FinancialCard object
with the data from each track
Namespace:
ProScript
Assembly:
proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntax public static FinancialCard ParseFinancialCard(
bool trackOneValid,
string trackOne,
bool trackTwoValid,
string trackTwo
)
Public Shared Function ParseFinancialCard (
trackOneValid As Boolean,
trackOne As String,
trackTwoValid As Boolean,
trackTwo As String
) As FinancialCard
public:
static FinancialCard^ ParseFinancialCard(
bool trackOneValid,
String^ trackOne,
bool trackTwoValid,
String^ trackTwo
)
static member ParseFinancialCard :
trackOneValid : bool *
trackOne : string *
trackTwoValid : bool *
trackTwo : string -> FinancialCard
Parameters
- trackOneValid
- Type: SystemBoolean
whether track 1 is valid - trackOne
- Type: SystemString
the track one string data - trackTwoValid
- Type: SystemBoolean
whether track 2 is valid - trackTwo
- Type: SystemString
the track 2 string data
Return Value
Type:
FinancialCarda FinancialCard object containing the track data
See Also