Condividi tramite


CallControl.AnswerRequested Evento

Definizione

Si verifica quando il dispositivo riceve una richiesta per rispondere a una chiamata.

public:
 virtual event CallControlEventHandler ^ AnswerRequested;
// Register
event_token AnswerRequested(CallControlEventHandler const& handler) const;

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

// Revoke with event_revoker
CallControl::AnswerRequested_revoker AnswerRequested(auto_revoke_t, CallControlEventHandler const& handler) const;
public event CallControlEventHandler AnswerRequested;
function onAnswerRequested(eventArgs) { /* Your code */ }
callControl.addEventListener("answerrequested", onAnswerRequested);
callControl.removeEventListener("answerrequested", onAnswerRequested);
- or -
callControl.onanswerrequested = onAnswerRequested;
Public Custom Event AnswerRequested As CallControlEventHandler 

Tipo evento

Commenti

Questa classe fornisce l'accesso agli eventi che possono essere monitorati e usati per modificare il comportamento dell'app con riconoscimento della telefonia. Il frammento di codice JavaScript seguente illustra come aggiungere listener di eventi alla classe CallControl e quindi rispondere a uno degli eventi , AnswerRequested.

Si applica a

Vedi anche