PerceptionMonitorChannel.DataReceived É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é lors de la réception d’une mise à jour des données pour le canal actuel.
// Register
event_token DataReceived(TypedEventHandler<PerceptionMonitorChannel, PerceptionMonitorDataReceivedEventArgs const&> const& handler) const;
// Revoke with event_token
void DataReceived(event_token const* cookie) const;
// Revoke with event_revoker
PerceptionMonitorChannel::DataReceived_revoker DataReceived(auto_revoke_t, TypedEventHandler<PerceptionMonitorChannel, PerceptionMonitorDataReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<PerceptionMonitorChannel,PerceptionMonitorDataReceivedEventArgs> DataReceived;
function onDataReceived(eventArgs) { /* Your code */ }
perceptionMonitorChannel.addEventListener("datareceived", onDataReceived);
perceptionMonitorChannel.removeEventListener("datareceived", onDataReceived);
- or -
perceptionMonitorChannel.ondatareceived = onDataReceived;
Public Custom Event DataReceived As TypedEventHandler(Of PerceptionMonitorChannel, PerceptionMonitorDataReceivedEventArgs)