Compartilhar via


VoipCallCoordinator.UnmuteRequested Evento

Definição

Importante

Os tipos no namespace Windows.Phone.Networking.Voip foram preteridos e podem não estar disponíveis em versões futuras do Windows. Em vez disso, use os tipos equivalentes no namespace Windows.ApplicationModel.Calls .

Gerado quando o aplicativo VoIP deve desativar todas as suas chamadas.

// Register
event_token UnmuteRequested(TypedEventHandler<VoipCallCoordinator, MuteChangeEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
VoipCallCoordinator::UnmuteRequested_revoker UnmuteRequested(auto_revoke_t, TypedEventHandler<VoipCallCoordinator, MuteChangeEventArgs const&> const& handler) const;
public event TypedEventHandler<VoipCallCoordinator,MuteChangeEventArgs> UnmuteRequested;
function onUnmuteRequested(eventArgs) { /* Your code */ }
voipCallCoordinator.addEventListener("unmuterequested", onUnmuteRequested);
voipCallCoordinator.removeEventListener("unmuterequested", onUnmuteRequested);
- or -
voipCallCoordinator.onunmuterequested = onUnmuteRequested;
Public Custom Event UnmuteRequested As TypedEventHandler(Of VoipCallCoordinator, MuteChangeEventArgs) 

Tipo de evento

Requisitos do Windows

Funcionalidades do aplicativo
ID_CAP_VOIP [Windows Phone]

Aplica-se a