Condividi tramite


VoipPhoneCall.EndRequested Evento

Definizione

Generato per avvisare l'app VoIP che la chiamata deve essere terminata.

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

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

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

Tipo evento

Requisiti Windows

Funzionalità dell'app
phoneCallHistory phoneCallHistorySystem voipCall

Commenti

Dopo la generazione di questo evento, l'applicazione deve chiamare NotifyCallEnded entro 5 secondi.

Si applica a