VoipCallCoordinator.UnmuteRequested イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
重要
Windows.Phone.Networking.Voip 名前空間の型は非推奨であり、今後のバージョンの Windows では使用できない可能性があります。 代わりに、 Windows.ApplicationModel.Calls 名前空間で同等の型を使用します。
VoIP アプリがすべての呼び出しのミュートを解除する必要がある場合に発生します。
// Register
event_token UnmuteRequested(TypedEventHandler<VoipCallCoordinator, MuteChangeEventArgs const&> const& handler) const;
// Revoke with event_token
void UnmuteRequested(event_token const* cookie) const;
// Revoke with event_revoker
VoipCallCoordinator::UnmuteRequested_revoker UnmuteRequested(auto_revoke_t, TypedEventHandler<VoipCallCoordinator, MuteChangeEventArgs const&> const& handler) const;
public event TypedEventHandler<VoipCallCoordinator,MuteChangeEventArgs> UnmuteRequested;
function onUnmuteRequested(eventArgs) { /* Your code */ }
voipCallCoordinator.addEventListener("unmuterequested", onUnmuteRequested);
voipCallCoordinator.removeEventListener("unmuterequested", onUnmuteRequested);
- or -
voipCallCoordinator.onunmuterequested = onUnmuteRequested;
Public Custom Event UnmuteRequested As TypedEventHandler(Of VoipCallCoordinator, MuteChangeEventArgs)
イベントの種類
Windows の要件
アプリの機能 |
ID_CAP_VOIP [Windows Phone]
|