CallControl.DialRequested イベント

定義

デバイスから番号がダイヤルされたときに発生します。

public:
 virtual event DialRequestedEventHandler ^ DialRequested;
// Register
event_token DialRequested(DialRequestedEventHandler const& handler) const;

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

// Revoke with event_revoker
CallControl::DialRequested_revoker DialRequested(auto_revoke_t, DialRequestedEventHandler const& handler) const;
public event DialRequestedEventHandler DialRequested;
function onDialRequested(eventArgs) { /* Your code */ }
callControl.addEventListener("dialrequested", onDialRequested);
callControl.removeEventListener("dialrequested", onDialRequested);
- or -
callControl.ondialrequested = onDialRequested;
Public Custom Event DialRequested As DialRequestedEventHandler 

イベントの種類

注釈

このクラスは、テレフォニー対応アプリの動作を変更するために監視および使用できるイベントへのアクセスを提供します。 次の JavaScript コード スニペットは、イベント リスナーを CallControl クラスに追加し、いずれかのイベント DialRequested に応答する方法を示しています。

適用対象

こちらもご覧ください