AudioRoutingManager.AudioEndpointChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在使用されているオーディオ エンドポイントが変更されたとき、または使用可能なオーディオ エンドポイントのセットが変更されたときに発生します。
// Register
event_token AudioEndpointChanged(TypedEventHandler<AudioRoutingManager, IInspectable const&> const& handler) const;
// Revoke with event_token
void AudioEndpointChanged(event_token const* cookie) const;
// Revoke with event_revoker
AudioRoutingManager::AudioEndpointChanged_revoker AudioEndpointChanged(auto_revoke_t, TypedEventHandler<AudioRoutingManager, IInspectable const&> const& handler) const;
public event TypedEventHandler<AudioRoutingManager,object> AudioEndpointChanged;
function onAudioEndpointChanged(eventArgs) { /* Your code */ }
audioRoutingManager.addEventListener("audioendpointchanged", onAudioEndpointChanged);
audioRoutingManager.removeEventListener("audioendpointchanged", onAudioEndpointChanged);
- or -
audioRoutingManager.onaudioendpointchanged = onAudioEndpointChanged;
Public Custom Event AudioEndpointChanged As TypedEventHandler(Of AudioRoutingManager, Object)
イベントの種類
Windows の要件
アプリの機能 |
ID_CAP_VOIP [Windows Phone]
|
注釈
このイベントは、アプリケーション自体が SetAudioEndpoint を呼び出して変更を要求した場合でも発生します。