共用方式為


ClaimedBarcodeScanner.IsDisabledOnDataReceived 屬性

定義

取得或設定布林值,指出是否在接收資料之後停用條碼掃描器。

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 ,才能讓裝置接收資料。

適用於