VoipCallCoordinator.MuteRequested 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重要
Windows.Phone.Networking.Voip 命名空间中的类型已弃用,将来的 Windows 版本中可能不可用。 请改用 Windows.ApplicationModel.Calls 命名空间中的等效类型。
当 VoIP 应用应将其所有呼叫静音时引发。
// 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)
事件类型
Windows 要求
应用功能 |
ID_CAP_VOIP [Windows Phone]
|