CallControl.RedialRequested 事件

定义

当设备收到重拨请求时发生。

public:
 virtual event RedialRequestedEventHandler ^ RedialRequested;
// Register
event_token RedialRequested(RedialRequestedEventHandler const& handler) const;

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

// Revoke with event_revoker
CallControl::RedialRequested_revoker RedialRequested(auto_revoke_t, RedialRequestedEventHandler const& handler) const;
public event RedialRequestedEventHandler RedialRequested;
function onRedialRequested(eventArgs) { /* Your code */ }
callControl.addEventListener("redialrequested", onRedialRequested);
callControl.removeEventListener("redialrequested", onRedialRequested);
- or -
callControl.onredialrequested = onRedialRequested;
Public Custom Event RedialRequested As RedialRequestedEventHandler 

事件类型

注解

此类提供对可监视的事件的访问,这些事件可用于修改电话感知应用的行为。 以下 JavaScript 代码片段演示如何将事件侦听器添加到 CallControl 类,然后响应其中一个事件 RedialRequested

适用于

另请参阅