ClaimedMagneticStripeReader.IsDisabledOnDataReceived Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a Boolean value that indicates whether the magnetic stripe reader is disabled after receiving the data from the most recently swiped card.
public:
property bool IsDisabledOnDataReceived { bool get(); void set(bool value); };
bool IsDisabledOnDataReceived();
void IsDisabledOnDataReceived(bool value);
public bool IsDisabledOnDataReceived { get; set; }
var boolean = claimedMagneticStripeReader.isDisabledOnDataReceived;
claimedMagneticStripeReader.isDisabledOnDataReceived = boolean;
Public Property IsDisabledOnDataReceived As Boolean
Property Value
bool
Set to true if the application wants to receive and process only one input or only one input at a time.
Remarks
IsDisabledOnDataReceived provides the application the option to disable the magnetic stripe reader after receiving the data. When set to true, the device is disabled as soon as it receives the data from the most recently swiped card. The application must call EnableAsync to get the device ready for the next data event.
This property is initialized to false.