Condividi tramite


VoipPhoneCall.RejectRequested Evento

Definizione

Generato quando una chiamata è stata rifiutata.

// Register
event_token RejectRequested(TypedEventHandler<VoipPhoneCall, CallRejectEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
VoipPhoneCall::RejectRequested_revoker RejectRequested(auto_revoke_t, TypedEventHandler<VoipPhoneCall, CallRejectEventArgs const&> const& handler) const;
public event TypedEventHandler<VoipPhoneCall,CallRejectEventArgs> RejectRequested;
function onRejectRequested(eventArgs) { /* Your code */ }
voipPhoneCall.addEventListener("rejectrequested", onRejectRequested);
voipPhoneCall.removeEventListener("rejectrequested", onRejectRequested);
- or -
voipPhoneCall.onrejectrequested = onRejectRequested;
Public Custom Event RejectRequested As TypedEventHandler(Of VoipPhoneCall, CallRejectEventArgs) 

Tipo evento

Requisiti Windows

Funzionalità dell'app
phoneCallHistory phoneCallHistorySystem voipCall

Commenti

Il sistema genera l'evento RejectRequested per segnalare all'applicazione VoIP che la chiamata è stata rifiutata. Dopo aver generato questo evento, l'applicazione VoIP deve chiamare NotifyCallEnded entro 5 secondi. Per altre informazioni, vedere VoipPhoneCall .

Si applica a