Partager via


VoipPhoneCall.AnswerRequested Événement

Définition

Important

Les types dans l’espace de noms Windows.Phone.Networking.Voip sont déconseillés et peuvent ne pas être disponibles dans les versions ultérieures de Windows. Utilisez plutôt les types équivalents dans l’espace de noms Windows.ApplicationModel.Calls .

Déclenché lorsque l’utilisateur répond à un appel entrant.

// Register
event_token AnswerRequested(TypedEventHandler<VoipPhoneCall, CallAnswerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
VoipPhoneCall::AnswerRequested_revoker AnswerRequested(auto_revoke_t, TypedEventHandler<VoipPhoneCall, CallAnswerEventArgs const&> const& handler) const;
public event TypedEventHandler<VoipPhoneCall,CallAnswerEventArgs> AnswerRequested;
function onAnswerRequested(eventArgs) { /* Your code */ }
voipPhoneCall.addEventListener("answerrequested", onAnswerRequested);
voipPhoneCall.removeEventListener("answerrequested", onAnswerRequested);
- or -
voipPhoneCall.onanswerrequested = onAnswerRequested;
Public Custom Event AnswerRequested As TypedEventHandler(Of VoipPhoneCall, CallAnswerEventArgs) 

Type d'événement

Configuration requise pour Windows

Fonctionnalités de l’application
ID_CAP_VOIP [Windows Phone]

S’applique à