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

适用于

另请参阅