AppBroadcastStreamReader.AudioFrameArrived Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
TypedEventHandler<AppBroadcastStreamReader,IInspectable>
Windows requirements
App capabilities |
appBroadcast
appBroadcastSettings
|