Click or drag to resize

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
)

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: IdentificationCard
an IdentificationCard object containing the track data
See Also