BackgroundMediaPlayer.MessageReceivedFromBackground イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
バックグラウンド タスクからメッセージを受信したときに発生します。
注意
Windows バージョン 1703 以降では、BackgroundMediaPlayer は非推奨となり、Windows の今後のバージョンでは使用できない可能性があります。 代わりに MediaPlayer クラスを使用してください。 詳細については、「 バックグラウンドでメディアを再生する」を参照してください。
// 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)
イベントの種類
- 属性