다음을 통해 공유


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

적용 대상

추가 정보