다음을 통해 공유


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에 응답하는 방법을 보여 줍니다.

적용 대상

추가 정보