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

적용 대상