ClaimedBarcodeScanner.IsDisabledOnDataReceived 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个布尔值,该值指示在接收数据后是否禁用条形码扫描仪。
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
属性值
Boolean
bool
如果应用程序希望一次只接收和处理一个输入或只处理一个输入,则设置为 true。
注解
当 IsDisabledOnDataReceived 为 true 时,应用程序一次只能接收一个数据,并在 DataReceived 事件后禁用设备。 应用程序必须调用 EnableAsync 才能使设备能够接收数据。