ClaimedBarcodeScanner.IsDisabledOnDataReceived Property

Definition

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

Boolean

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.

Applies to