BarcodeScannerProviderConnection.DisableScannerRequested Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)