VoipCallCoordinator.MuteRequested Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Penting
Jenis di namespace Windows.Phone.Networking.Voip tidak digunakan lagi, dan mungkin tidak tersedia di versi Windows yang akan datang. Sebagai gantinya, gunakan jenis yang setara di namespace Layanan Windows.ApplicationModel.Calls .
Muncul saat aplikasi VoIP harus mematikan suara semua panggilannya.
// 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)
Jenis Acara
Persyaratan Windows
Kemampuan aplikasi |
ID_CAP_VOIP [Windows Phone]
|