CallControl.AnswerRequested イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
デバイスが通話に応答する要求を受信したときに発生します。
public:
virtual event CallControlEventHandler ^ AnswerRequested;
// Register
event_token AnswerRequested(CallControlEventHandler const& handler) const;
// Revoke with event_token
void AnswerRequested(event_token const* cookie) const;
// Revoke with event_revoker
CallControl::AnswerRequested_revoker AnswerRequested(auto_revoke_t, CallControlEventHandler const& handler) const;
public event CallControlEventHandler AnswerRequested;
function onAnswerRequested(eventArgs) { /* Your code */ }
callControl.addEventListener("answerrequested", onAnswerRequested);
callControl.removeEventListener("answerrequested", onAnswerRequested);
- or -
callControl.onanswerrequested = onAnswerRequested;
Public Custom Event AnswerRequested As CallControlEventHandler
イベントの種類
注釈
このクラスは、テレフォニー対応アプリの動作を変更するために監視および使用できるイベントへのアクセスを提供します。 次の JavaScript コード スニペットは、イベント リスナーを CallControl クラスに追加し、いずれかのイベント AnswerRequested に応答する方法を示しています。