From: sooyeon.kim Date: Fri, 25 Aug 2017 05:17:53 +0000 (+0900) Subject: Add feature descriptions X-Git-Tag: submit/tizen/20170828.092457~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fe61c3f3e4d1b0d0cacf27db513f39aebb132b00;p=platform%2Fcore%2Fcsapi%2Fuix-stt-engine.git Add feature descriptions Change-Id: Ifcd25fcf0dc45ebe2a3cd66c1d06dbe53005df9a Signed-off-by: sooyeon.kim --- diff --git a/Tizen.Uix.SttEngine/Tizen.Uix.SttEngine/SttEngine.cs b/Tizen.Uix.SttEngine/Tizen.Uix.SttEngine/SttEngine.cs index 219c3c2..4f8db42 100755 --- a/Tizen.Uix.SttEngine/Tizen.Uix.SttEngine/SttEngine.cs +++ b/Tizen.Uix.SttEngine/Tizen.Uix.SttEngine/SttEngine.cs @@ -479,6 +479,10 @@ namespace Tizen.Uix.SttEngine /// /// Public Constructor /// + /// + /// http://tizen.org/feature/speech.recognition + /// http://tizen.org/feature/microphone + /// public Engine() { _engine = this; @@ -491,6 +495,10 @@ namespace Tizen.Uix.SttEngine /// /// http://tizen.org/privilege/recorder /// + /// + /// http://tizen.org/feature/speech.recognition + /// http://tizen.org/feature/microphone + /// /// /// ServiceAppMain should be used for working the engine after this function. /// @@ -534,6 +542,10 @@ namespace Tizen.Uix.SttEngine /// /// Sends the recognition result to the engine service user. /// + /// + /// http://tizen.org/feature/speech.recognition + /// http://tizen.org/feature/microphone + /// /// /// 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. @@ -610,6 +622,10 @@ namespace Tizen.Uix.SttEngine /// /// Sends the error to the engine service user. /// + /// + /// http://tizen.org/feature/speech.recognition + /// http://tizen.org/feature/microphone + /// /// The Error Reason /// The error message /// Thrown in case of Invalid Parameter @@ -633,6 +649,10 @@ namespace Tizen.Uix.SttEngine /// /// Sends the speech status to the engine service user when Stt engine notifies the change of the speech status. /// + /// + /// http://tizen.org/feature/speech.recognition + /// http://tizen.org/feature/microphone + /// /// /// 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. /// @@ -661,6 +681,10 @@ namespace Tizen.Uix.SttEngine /// /// http://tizen.org/privilege/recorder /// + /// + /// http://tizen.org/feature/speech.recognition + /// http://tizen.org/feature/microphone + /// /// /// 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. @@ -701,6 +725,10 @@ namespace Tizen.Uix.SttEngine /// /// http://tizen.org/privilege/recorder /// + /// + /// http://tizen.org/feature/speech.recognition + /// http://tizen.org/feature/microphone + /// /// 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. @@ -798,4 +826,4 @@ namespace Tizen.Uix.SttEngine return _engine.Deinitialize(); }; } -} \ No newline at end of file +}