VoipCallCoordinator.UnmuteRequested 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重要
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]
|