다음을 통해 공유


VoipCallCoordinator.UnmuteRequested 이벤트

정의

중요

Windows.Phone.Networking.Voip 네임스페이스의 형식은 더 이상 사용되지 않으며 이후 버전의 Windows에서는 사용할 수 없습니다. 대신 Windows.ApplicationModel.Calls 네임스페이스에서 해당하는 형식을 사용합니다.

VoIP 앱이 모든 호출의 음소거를 해제해야 할 때 발생합니다.

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

이벤트 유형

Windows 요구 사항

앱 기능
ID_CAP_VOIP [Windows Phone]

적용 대상