BackgroundMediaPlayer.MessageReceivedFromForeground Event

Definition

Occurs when a message is received from the foreground 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 MessageReceivedFromForeground(EventHandler<MediaPlayerDataReceivedEventArgs> const& handler) const;

// Revoke with event_token
static void MessageReceivedFromForeground(event_token const* cookie) const;

// Revoke with event_revoker
static BackgroundMediaPlayer::MessageReceivedFromForeground_revoker MessageReceivedFromForeground(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 MessageReceivedFromForeground(EventHandler<MediaPlayerDataReceivedEventArgs> const& handler) const;

// Revoke with event_token
static void MessageReceivedFromForeground(event_token const* cookie) const;

// Revoke with event_revoker
static BackgroundMediaPlayer::MessageReceivedFromForeground_revoker MessageReceivedFromForeground(auto_revoke_t, EventHandler<MediaPlayerDataReceivedEventArgs> const& handler) const;
public static event System.EventHandler<MediaPlayerDataReceivedEventArgs> MessageReceivedFromForeground;
[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> MessageReceivedFromForeground;
function onMessageReceivedFromForeground(eventArgs) { /* Your code */ }
Windows.Media.Playback.BackgroundMediaPlayer.addEventListener("messagereceivedfromforeground", onMessageReceivedFromForeground);
Windows.Media.Playback.BackgroundMediaPlayer.removeEventListener("messagereceivedfromforeground", onMessageReceivedFromForeground);
- or -
Windows.Media.Playback.BackgroundMediaPlayer.onmessagereceivedfromforeground = onMessageReceivedFromForeground;
Public Shared Custom Event MessageReceivedFromForeground As EventHandler(Of MediaPlayerDataReceivedEventArgs) 

Event Type

Attributes

Applies to