次の方法で共有


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 に応答する方法を示しています。

適用対象