AppBroadcastStreamReader.AudioFrameArrived Event

Definition

Raised when a new audio frame from the broadcast stream arrives.

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

Event Type

Windows requirements

App capabilities
appBroadcast appBroadcastSettings

Applies to