共用方式為


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要求變更,也會引發此事件。

適用於