BarcodeScannerProviderConnection.DisableScannerRequested Event

Definition

Raised when the client app attempts to disable the barcode scanner.

// 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) 

Event Type

Applies to