PerceptionMonitorChannel.DataReceived 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在收到当前通道的数据更新时引发。
// 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)