VoipPhoneCall.ResumeRequested Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raised to indicate that a previously held VoIP call should be made active.
// 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)
Event Type
Windows requirements
App capabilities |
phoneCallHistory
phoneCallHistorySystem
voipCall
|
Remarks
After this event has been raised, the application must call NotifyCallActive within 5 seconds.