BarcodeScannerProviderConnection.StopSoftwareTriggerRequested Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Generato quando l'app client tenta di segnalare allo scanner di codice a barre di interrompere l'analisi.
// 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)
Tipo evento
TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerStopSoftwareTriggerRequestEventArgs>