ClaimedBarcodeScanner.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 barcode scanner is disabled after receiving the data.
public:
property bool IsDisabledOnDataReceived { bool get(); void set(bool value); };
bool IsDisabledOnDataReceived();
void IsDisabledOnDataReceived(bool value);
public bool IsDisabledOnDataReceived { get; set; }
var boolean = claimedBarcodeScanner.isDisabledOnDataReceived;
claimedBarcodeScanner.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
When IsDisabledOnDataReceived is true, the application can only received one data at a time and the device is disabled after the DataReceived event. The application must call EnableAsync to enable the device to received data.