PerceptionMonitorChannel.DataReceived 事件

定义

在收到当前通道的数据更新时引发。

// 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) 

事件类型

适用于