BarcodeScannerProviderConnection.StopSoftwareTriggerRequested 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當用戶端應用程式嘗試向條碼掃描器發出訊號以停止掃描時引發。
// 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)
事件類型
TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerStopSoftwareTriggerRequestEventArgs>