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) 

イベントの種類

適用対象