다음을 통해 공유


BarcodeScannerProviderConnection.DisableScannerRequested 이벤트

정의

클라이언트 앱이 바코드 스캐너를 사용하지 않도록 설정하려고 할 때 발생합니다.

// Register
event_token DisableScannerRequested(TypedEventHandler<BarcodeScannerProviderConnection, BarcodeScannerDisableScannerRequestEventArgs const&> const& handler) const;

// Revoke with event_token
void DisableScannerRequested(event_token const* cookie) const;

// Revoke with event_revoker
BarcodeScannerProviderConnection::DisableScannerRequested_revoker DisableScannerRequested(auto_revoke_t, TypedEventHandler<BarcodeScannerProviderConnection, BarcodeScannerDisableScannerRequestEventArgs const&> const& handler) const;
public event TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerDisableScannerRequestEventArgs> DisableScannerRequested;
function onDisableScannerRequested(eventArgs) { /* Your code */ }
barcodeScannerProviderConnection.addEventListener("disablescannerrequested", onDisableScannerRequested);
barcodeScannerProviderConnection.removeEventListener("disablescannerrequested", onDisableScannerRequested);
- or -
barcodeScannerProviderConnection.ondisablescannerrequested = onDisableScannerRequested;
Public Custom Event DisableScannerRequested As TypedEventHandler(Of BarcodeScannerProviderConnection, BarcodeScannerDisableScannerRequestEventArgs) 

이벤트 유형

적용 대상