次の方法で共有


AppBroadcastStreamReader.AudioFrameArrived イベント

定義

ブロードキャスト ストリームからの新しいオーディオ フレームが到着したときに発生します。

// Register
event_token AudioFrameArrived(TypedEventHandler<AppBroadcastStreamReader, IInspectable const&> const& handler) const;

// Revoke with event_token
void AudioFrameArrived(event_token const* cookie) const;

// Revoke with event_revoker
AppBroadcastStreamReader::AudioFrameArrived_revoker AudioFrameArrived(auto_revoke_t, TypedEventHandler<AppBroadcastStreamReader, IInspectable const&> const& handler) const;
public event TypedEventHandler<AppBroadcastStreamReader,object> AudioFrameArrived;
function onAudioFrameArrived(eventArgs) { /* Your code */ }
appBroadcastStreamReader.addEventListener("audioframearrived", onAudioFrameArrived);
appBroadcastStreamReader.removeEventListener("audioframearrived", onAudioFrameArrived);
- or -
appBroadcastStreamReader.onaudioframearrived = onAudioFrameArrived;
Public Custom Event AudioFrameArrived As TypedEventHandler(Of AppBroadcastStreamReader, Object) 

イベントの種類

Windows の要件

アプリの機能
appBroadcast appBroadcastSettings

適用対象