次の方法で共有


VoipPhoneCall.ResumeRequested イベント

定義

重要

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

以前に保留されていた VoIP 呼び出しをアクティブにする必要があることを示すために発生します。

// Register
event_token ResumeRequested(TypedEventHandler<VoipPhoneCall, CallStateChangeEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
VoipPhoneCall::ResumeRequested_revoker ResumeRequested(auto_revoke_t, TypedEventHandler<VoipPhoneCall, CallStateChangeEventArgs const&> const& handler) const;
public event TypedEventHandler<VoipPhoneCall,CallStateChangeEventArgs> ResumeRequested;
function onResumeRequested(eventArgs) { /* Your code */ }
voipPhoneCall.addEventListener("resumerequested", onResumeRequested);
voipPhoneCall.removeEventListener("resumerequested", onResumeRequested);
- or -
voipPhoneCall.onresumerequested = onResumeRequested;
Public Custom Event ResumeRequested As TypedEventHandler(Of VoipPhoneCall, CallStateChangeEventArgs) 

イベントの種類

Windows の要件

アプリの機能
ID_CAP_VOIP [Windows Phone]

注釈

このイベントが発生した後、アプリケーションは 5 秒以内 に NotifyCallActive を 呼び出す必要があります。

適用対象