CardParserParseIdentificationCard Method |
This method takes the strings from each track and constructs a IdentificationCard 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 IdentificationCard ParseIdentificationCard(
bool trackOneValid,
string trackOne,
bool trackTwoValid,
string trackTwo,
bool trackThreeValid,
string trackThree
)
Public Shared Function ParseIdentificationCard (
trackOneValid As Boolean,
trackOne As String,
trackTwoValid As Boolean,
trackTwo As String,
trackThreeValid As Boolean,
trackThree As String
) As IdentificationCard
public:
static IdentificationCard^ ParseIdentificationCard(
bool trackOneValid,
String^ trackOne,
bool trackTwoValid,
String^ trackTwo,
bool trackThreeValid,
String^ trackThree
)
static member ParseIdentificationCard :
trackOneValid : bool *
trackOne : string *
trackTwoValid : bool *
trackTwo : string *
trackThreeValid : bool *
trackThree : string -> IdentificationCard
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 - trackThreeValid
- Type: SystemBoolean
whether track 3 is valid - trackThree
- Type: SystemString
the track 3 string data
Return Value
Type:
IdentificationCardan IdentificationCard object containing the track data
See Also