Partager via


CallControl.HangUpRequested Événement

Définition

Se produit lorsque l’appareil reçoit une demande de raccrocher un appel.

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

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

// Revoke with event_revoker
CallControl::HangUpRequested_revoker HangUpRequested(auto_revoke_t, CallControlEventHandler const& handler) const;
public event CallControlEventHandler HangUpRequested;
function onHangUpRequested(eventArgs) { /* Your code */ }
callControl.addEventListener("hanguprequested", onHangUpRequested);
callControl.removeEventListener("hanguprequested", onHangUpRequested);
- or -
callControl.onhanguprequested = onHangUpRequested;
Public Custom Event HangUpRequested As CallControlEventHandler 

Type d'événement

Remarques

Cette classe fournit l’accès aux événements qui peuvent être surveillés et utilisés pour modifier le comportement de votre application prenant en charge la téléphonie. L’extrait de code JavaScript suivant montre comment ajouter des écouteurs d’événements à la classe CallControl , puis répondre à l’un des événements, HangUpRequested.

S’applique à