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

適用於