VoipCallCoordinator.MuteRequested Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Importante
I tipi nello spazio dei nomi Windows.Phone.Networking.Voip sono deprecati e potrebbero non essere disponibili nelle versioni future di Windows. Usare invece i tipi equivalenti nello spazio dei nomi Windows.ApplicationModel.Call .
Generato quando l'app VoIP deve disattivare tutte le chiamate.
// Register
event_token MuteRequested(TypedEventHandler<VoipCallCoordinator, MuteChangeEventArgs const&> const& handler) const;
// Revoke with event_token
void MuteRequested(event_token const* cookie) const;
// Revoke with event_revoker
VoipCallCoordinator::MuteRequested_revoker MuteRequested(auto_revoke_t, TypedEventHandler<VoipCallCoordinator, MuteChangeEventArgs const&> const& handler) const;
public event TypedEventHandler<VoipCallCoordinator,MuteChangeEventArgs> MuteRequested;
function onMuteRequested(eventArgs) { /* Your code */ }
voipCallCoordinator.addEventListener("muterequested", onMuteRequested);
voipCallCoordinator.removeEventListener("muterequested", onMuteRequested);
- or -
voipCallCoordinator.onmuterequested = onMuteRequested;
Public Custom Event MuteRequested As TypedEventHandler(Of VoipCallCoordinator, MuteChangeEventArgs)
Tipo evento
Requisiti Windows
Funzionalità dell'app |
ID_CAP_VOIP [Windows Phone]
|