VoipCallCoordinator.UnmuteRequested Event

Definition

Important

The types in the Windows.Phone.Networking.Voip namespace are deprecated, and may not be available in future versions of Windows. Instead, use the equivalent types in the Windows.ApplicationModel.Calls namespace.

Raised when the VoIP app should unmute all of its calls.

// 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) 

Event Type

Windows requirements

App capabilities
ID_CAP_VOIP [Windows Phone]

Applies to