VoipPhoneCall.ResumeRequested 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
引发 以指示应使以前保留的 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 。