/// <summary>
/// Public Constructor
/// </summary>
+ /// <feature>
+ /// http://tizen.org/feature/speech.recognition
+ /// http://tizen.org/feature/microphone
+ /// </feature>
public Engine()
{
_engine = this;
/// <privilege>
/// http://tizen.org/privilege/recorder
/// </privilege>
+ /// <feature>
+ /// http://tizen.org/feature/speech.recognition
+ /// http://tizen.org/feature/microphone
+ /// </feature>
/// <remarks>
/// ServiceAppMain should be used for working the engine after this function.
/// </remarks>
/// <summary>
/// Sends the recognition result to the engine service user.
/// </summary>
+ /// <feature>
+ /// http://tizen.org/feature/speech.recognition
+ /// http://tizen.org/feature/microphone
+ /// </feature>
/// <remarks>
/// This API is used in SetRecordingData() and Stop(), when Stt engine sends the recognition result to the engine service user.
/// This function is called in the following situations; 1) after Stop() is called, 2) the end point of speech is detected from recording, or 3) partial result is occurred.
/// <summary>
/// Sends the error to the engine service user.
/// </summary>
+ /// <feature>
+ /// http://tizen.org/feature/speech.recognition
+ /// http://tizen.org/feature/microphone
+ /// </feature>
/// <param name="error">The Error Reason</param>
/// <param name="msg">The error message</param>
/// <exception cref="ArgumentException">Thrown in case of Invalid Parameter</exception>
/// <summary>
/// Sends the speech status to the engine service user when Stt engine notifies the change of the speech status.
/// </summary>
+ /// <feature>
+ /// http://tizen.org/feature/speech.recognition
+ /// http://tizen.org/feature/microphone
+ /// </feature>
/// <remarks>
/// This API is invoked when Stt engine wants to notify the change of the speech status anytime. NOTE that this API can be invoked for recognizing the speech.
/// </remarks>
/// <privilege>
/// http://tizen.org/privilege/recorder
/// </privilege>
+ /// <feature>
+ /// http://tizen.org/feature/speech.recognition
+ /// http://tizen.org/feature/microphone
+ /// </feature>
/// <param name="callback">
/// Called when Stt engine receives the private data from the engine service user.
/// This callback function is called when the engine service user sends the private data to Stt engine.
/// <privilege>
/// http://tizen.org/privilege/recorder
/// </privilege>
+ /// <feature>
+ /// http://tizen.org/feature/speech.recognition
+ /// http://tizen.org/feature/microphone
+ /// </feature>
/// <param name="callback">callback function
/// Called when Stt engine provides the engine service user with the private data.
/// This callback function is called when the engine service user gets the private data from Stt engine.
return _engine.Deinitialize();
};
}
-}
\ No newline at end of file
+}