BarcodeScannerProviderConnection.StopSoftwareTriggerRequested Event

Definition

Raised when the client app attempts to signal the barcode scanner to stop scanning.

// Register
event_token StopSoftwareTriggerRequested(TypedEventHandler<BarcodeScannerProviderConnection, BarcodeScannerStopSoftwareTriggerRequestEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
BarcodeScannerProviderConnection::StopSoftwareTriggerRequested_revoker StopSoftwareTriggerRequested(auto_revoke_t, TypedEventHandler<BarcodeScannerProviderConnection, BarcodeScannerStopSoftwareTriggerRequestEventArgs const&> const& handler) const;
public event TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerStopSoftwareTriggerRequestEventArgs> StopSoftwareTriggerRequested;
function onStopSoftwareTriggerRequested(eventArgs) { /* Your code */ }
barcodeScannerProviderConnection.addEventListener("stopsoftwaretriggerrequested", onStopSoftwareTriggerRequested);
barcodeScannerProviderConnection.removeEventListener("stopsoftwaretriggerrequested", onStopSoftwareTriggerRequested);
- or -
barcodeScannerProviderConnection.onstopsoftwaretriggerrequested = onStopSoftwareTriggerRequested;
Public Custom Event StopSoftwareTriggerRequested As TypedEventHandler(Of BarcodeScannerProviderConnection, BarcodeScannerStopSoftwareTriggerRequestEventArgs) 

Event Type

Applies to