SpeechContinuousRecognitionSession.Completed 이벤트

정의

연속 인식 세션이 종료되면 발생합니다.

// Register
event_token Completed(TypedEventHandler<SpeechContinuousRecognitionSession, SpeechContinuousRecognitionCompletedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpeechContinuousRecognitionSession::Completed_revoker Completed(auto_revoke_t, TypedEventHandler<SpeechContinuousRecognitionSession, SpeechContinuousRecognitionCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpeechContinuousRecognitionSession,SpeechContinuousRecognitionCompletedEventArgs> Completed;
function onCompleted(eventArgs) { /* Your code */ }
speechContinuousRecognitionSession.addEventListener("completed", onCompleted);
speechContinuousRecognitionSession.removeEventListener("completed", onCompleted);
- or -
speechContinuousRecognitionSession.oncompleted = onCompleted;
Public Custom Event Completed As TypedEventHandler(Of SpeechContinuousRecognitionSession, SpeechContinuousRecognitionCompletedEventArgs) 

이벤트 유형

설명

음성 인식 세션 중에 애플리케이션이 일시 중단되고 다시 시작되는 경우 성공에 대한 SpeechContinuousRecognitionCompletedEventArgs 상태 속성을 검사 것이 중요합니다. API는 음성 인식을 다시 시작해야 함을 나타내는 UserCanceled 결과를 제공할 수 있습니다.

적용 대상

추가 정보