VoipPhoneCall.ResumeRequested イベント

定義

以前に保留されていた 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 の要件

アプリの機能
phoneCallHistory phoneCallHistorySystem voipCall

注釈

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

適用対象