共用方式為


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

適用於

另請參閱