CallControl.DialRequested 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
디바이스에서 번호로 전화를 걸 때 발생합니다.
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에 응답하는 방법을 보여 줍니다.