次の方法で共有


AudioRoutingManager.AudioEndpointChanged イベント

定義

現在使用されているオーディオ エンドポイントが変更されたとき、または使用可能なオーディオ エンドポイントのセットが変更されたときに発生します。

// 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 を呼び出して変更を要求した場合でも発生します。

適用対象