次の方法で共有


VoipCallCoordinator.MuteRequested イベント

定義

重要

Windows.Phone.Networking.Voip 名前空間の型は非推奨であり、将来のバージョンの Windows では使用できない可能性があります。 代わりに、 Windows.ApplicationModel.Calls 名前空間で同等の型を使用します。

VoIP アプリがすべての呼び出しをミュートする必要がある場合に発生します。

// Register
event_token MuteRequested(TypedEventHandler<VoipCallCoordinator, MuteChangeEventArgs const&> const& handler) const;

// Revoke with event_token
void MuteRequested(event_token const* cookie) const;

// Revoke with event_revoker
VoipCallCoordinator::MuteRequested_revoker MuteRequested(auto_revoke_t, TypedEventHandler<VoipCallCoordinator, MuteChangeEventArgs const&> const& handler) const;
public event TypedEventHandler<VoipCallCoordinator,MuteChangeEventArgs> MuteRequested;
function onMuteRequested(eventArgs) { /* Your code */ }
voipCallCoordinator.addEventListener("muterequested", onMuteRequested);
voipCallCoordinator.removeEventListener("muterequested", onMuteRequested);
- or -
voipCallCoordinator.onmuterequested = onMuteRequested;
Public Custom Event MuteRequested As TypedEventHandler(Of VoipCallCoordinator, MuteChangeEventArgs) 

イベントの種類

Windows の要件

アプリの機能
ID_CAP_VOIP [Windows Phone]

適用対象