共用方式為


CallControl.HangUpRequested 事件

定義

發生于裝置收到呼叫停止回應的要求時。

public:
 virtual event CallControlEventHandler ^ HangUpRequested;
// Register
event_token HangUpRequested(CallControlEventHandler const& handler) const;

// Revoke with event_token
void HangUpRequested(event_token const* cookie) const;

// Revoke with event_revoker
CallControl::HangUpRequested_revoker HangUpRequested(auto_revoke_t, CallControlEventHandler const& handler) const;
public event CallControlEventHandler HangUpRequested;
function onHangUpRequested(eventArgs) { /* Your code */ }
callControl.addEventListener("hanguprequested", onHangUpRequested);
callControl.removeEventListener("hanguprequested", onHangUpRequested);
- or -
callControl.onhanguprequested = onHangUpRequested;
Public Custom Event HangUpRequested As CallControlEventHandler 

事件類型

備註

這個類別可讓您存取可監視及用來修改電話語音感知應用程式行為的事件。 下列 JavaScript 程式碼片段示範如何將事件接聽程式新增至 CallControl 類別,然後回應其中一個事件 HangUpRequested

適用於