BackgroundMediaPlayer.MessageReceivedFromBackground 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.
Occurs when a message is received from the background task.
Note
Starting with Windows, version 1703, BackgroundMediaPlayer is deprecated and may not be available in future versions of Windows. Use the MediaPlayer class instead. For more information, see Play media in the background.
// Register
static event_token MessageReceivedFromBackground(EventHandler<MediaPlayerDataReceivedEventArgs> const& handler) const;
// Revoke with event_token
static void MessageReceivedFromBackground(event_token const* cookie) const;
// Revoke with event_revoker
static BackgroundMediaPlayer::MessageReceivedFromBackground_revoker MessageReceivedFromBackground(auto_revoke_t, EventHandler<MediaPlayerDataReceivedEventArgs> const& handler) const;
/// [add: Windows.Foundation.Metadata.Deprecated("Use MediaPlayer instead of BackgroundMediaPlayer. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
/// [remove: Windows.Foundation.Metadata.Deprecated("Use MediaPlayer instead of BackgroundMediaPlayer. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
// Register
static event_token MessageReceivedFromBackground(EventHandler<MediaPlayerDataReceivedEventArgs> const& handler) const;
// Revoke with event_token
static void MessageReceivedFromBackground(event_token const* cookie) const;
// Revoke with event_revoker
static BackgroundMediaPlayer::MessageReceivedFromBackground_revoker MessageReceivedFromBackground(auto_revoke_t, EventHandler<MediaPlayerDataReceivedEventArgs> const& handler) const;
public static event System.EventHandler<MediaPlayerDataReceivedEventArgs> MessageReceivedFromBackground;
[add: Windows.Foundation.Metadata.Deprecated("Use MediaPlayer instead of BackgroundMediaPlayer. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
[remove: Windows.Foundation.Metadata.Deprecated("Use MediaPlayer instead of BackgroundMediaPlayer. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
public static event System.EventHandler<MediaPlayerDataReceivedEventArgs> MessageReceivedFromBackground;
function onMessageReceivedFromBackground(eventArgs) { /* Your code */ }
Windows.Media.Playback.BackgroundMediaPlayer.addEventListener("messagereceivedfrombackground", onMessageReceivedFromBackground);
Windows.Media.Playback.BackgroundMediaPlayer.removeEventListener("messagereceivedfrombackground", onMessageReceivedFromBackground);
- or -
Windows.Media.Playback.BackgroundMediaPlayer.onmessagereceivedfrombackground = onMessageReceivedFromBackground;
Public Shared Custom Event MessageReceivedFromBackground As EventHandler(Of MediaPlayerDataReceivedEventArgs)
Event Type
- Attributes