BarcodeScannerProviderConnection.StopSoftwareTriggerRequested Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenché lorsque l’application cliente tente de signaler au scanneur de codes-barres l’arrêt de l’analyse.
// 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)
Type d'événement
TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerStopSoftwareTriggerRequestEventArgs>