VoipPhoneCall.AnswerRequested 이벤트

정의

사용자가 들어오는 호출에 응답할 때 발생합니다.

// Register
event_token AnswerRequested(TypedEventHandler<VoipPhoneCall, CallAnswerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
VoipPhoneCall::AnswerRequested_revoker AnswerRequested(auto_revoke_t, TypedEventHandler<VoipPhoneCall, CallAnswerEventArgs const&> const& handler) const;
public event TypedEventHandler<VoipPhoneCall,CallAnswerEventArgs> AnswerRequested;
function onAnswerRequested(eventArgs) { /* Your code */ }
voipPhoneCall.addEventListener("answerrequested", onAnswerRequested);
voipPhoneCall.removeEventListener("answerrequested", onAnswerRequested);
- or -
voipPhoneCall.onanswerrequested = onAnswerRequested;
Public Custom Event AnswerRequested As TypedEventHandler(Of VoipPhoneCall, CallAnswerEventArgs) 

이벤트 유형

Windows 요구 사항

앱 기능
phoneCallHistory phoneCallHistorySystem voipCall

설명

시스템에서 AnswerRequested 이벤트를 발생시켜 VoIP 애플리케이션에 시스템에서 호출을 수락했음을 나타냅니다. 이벤트가 발생한 후 VoIP 애플리케이션은 5초 이내에 NotifyCallActive를 호출해야 합니다. 자세한 내용은 VoipPhoneCall 을 참조하세요.

적용 대상