From 50b641d84e25ed1a712baeb7e6c72702bd0cd02e Mon Sep 17 00:00:00 2001 From: "sooyeon.kim" Date: Mon, 29 May 2017 17:37:39 +0900 Subject: [PATCH] Fix API reference Change-Id: If8a3b41576bef5d0a1cf5d80720615c2d6640efe Signed-off-by: sooyeon.kim --- .../Tizen.Uix.VoiceControl/VoiceControlClient.cs | 80 +++++++++++----------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/Tizen.Uix.VoiceControl/Tizen.Uix.VoiceControl/VoiceControlClient.cs b/Tizen.Uix.VoiceControl/Tizen.Uix.VoiceControl/VoiceControlClient.cs index 200f2d9..e7ea9f5 100755 --- a/Tizen.Uix.VoiceControl/Tizen.Uix.VoiceControl/VoiceControlClient.cs +++ b/Tizen.Uix.VoiceControl/Tizen.Uix.VoiceControl/VoiceControlClient.cs @@ -234,9 +234,9 @@ namespace Tizen.Uix.VoiceControl /// /// http://tizen.org/privilege/recorder /// - /// + ///
         /// The State must be Initialized or Ready.
-        /// 
+        /// 
public static string CurrentLanguage { get @@ -263,9 +263,9 @@ namespace Tizen.Uix.VoiceControl /// /// http://tizen.org/privilege/recorder /// - /// + ///
         /// The State must be Initialized or Ready.
-        /// 
+        /// 
public static State State { get @@ -292,9 +292,9 @@ namespace Tizen.Uix.VoiceControl /// /// http://tizen.org/privilege/recorder /// - /// + ///
         /// The State must be Ready.
-        /// 
+        /// 
public static ServiceState ServiceState { get @@ -338,9 +338,9 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Invalid Parameter. /// This Exception can be due to Not Supported. /// This Exception can be due to Permission Denied. - /// + ///
         /// The State must be Ready.
-        /// 
+        /// 
public static void SetInvocationName(string name) { ErrorCode error = VcSetInvocationName(name); @@ -368,9 +368,9 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Out Of Memory. /// This Exception can be due to Not Supported. /// This Exception can be due to Permission Denied. - /// + /// /// The State will be Initialized. - /// + /// public static void Initialize() { ErrorCode error = VcInitialize(); @@ -425,12 +425,12 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Operation Failed. /// This Exception can be due to Not Supported. /// This Exception can be due to Permission Denied. - /// + ///
         /// The State should be Initialized
-        /// 
-        /// 
+        /// 
+ /// /// The State will be Ready - /// + /// public static void Prepare() { ErrorCode error = VcPrepare(); @@ -457,12 +457,12 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Invalid State. /// This Exception can be due to Not Supported. /// This Exception can be due to Permission Denied. - /// + ///
         /// The State should be Ready
-        /// 
-        /// 
+        /// 
+ /// /// The State should be Initialized - /// + /// public static void Unprepare() { ErrorCode error = VcUnprepare(); @@ -493,9 +493,9 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Operation Failed. /// This Exception can be due to Not Supported. /// This Exception can be due to Permission Denied. - /// + ///
         /// The State should be Ready or Initialized
-        /// 
+        /// 
public static IEnumerable GetSupportedLanguages() { s_supportedLanguages = new List(); @@ -539,9 +539,9 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Operation Failed. /// This Exception can be due to Not Supported. /// This Exception can be due to Permission Denied. - /// + ///
         /// The State should be Ready
-        /// 
+        /// 
public static VoiceCommandList GetSystemCommandList() { IntPtr handle = IntPtr.Zero; @@ -590,9 +590,9 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Invalid Parameter. /// This Exception can be due to Not Supported. /// This Exception can be due to Permission Denied. - /// + ///
         /// The State should be Ready
-        /// 
+        /// 
public static void RequestDialog(string dispText, string uttText, bool autoStart) { ErrorCode error = VcRequestDialog(dispText, uttText, autoStart); @@ -626,9 +626,9 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Invalid Parameter. /// This Exception can be due to Not Supported. /// This Exception can be due to Permission Denied. - /// + ///
         /// The State should be Ready
-        /// 
+        /// 
public static void SetCommandList(VoiceCommandList list, CommandType type) { if ((type == CommandType.Foreground) || (type == CommandType.Background)) @@ -665,9 +665,9 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Invalid Parameter. /// This Exception can be due to Not Supported. /// This Exception can be due to Permission Denied. - /// + ///
         /// The State should be Ready
-        /// 
+        /// 
public static void UnsetCommandList(CommandType type) { if ((type == CommandType.Foreground) || (type == CommandType.Background)) @@ -706,9 +706,9 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Invalid Parameter. /// This Exception can be due to Not Supported. /// The Recognition Result if possible else a null object - /// + ///
         /// The State should be Ready
-        /// 
+        /// 
public static RecognitionResult GetResult() { s_recognitionResult = null; @@ -729,9 +729,9 @@ namespace Tizen.Uix.VoiceControl /// /// Event to be invoked when the recognition is done. /// - /// + ///
         /// The State should be Initialized
-        /// 
+        /// 
public static event EventHandler RecognitionResult { add @@ -775,9 +775,9 @@ namespace Tizen.Uix.VoiceControl /// /// Event to be invoked when VoiceControl service state changes. /// - /// + ///
         /// The State should be Initialized
-        /// 
+        /// 
public static event EventHandler ServiceStateChanged { add @@ -813,9 +813,9 @@ namespace Tizen.Uix.VoiceControl /// /// Event to be invoked when VoiceControl client state changes. /// - /// + ///
         /// The State should be Initialized
-        /// 
+        /// 
public static event EventHandler StateChanged { add @@ -851,9 +851,9 @@ namespace Tizen.Uix.VoiceControl /// /// Event to be invoked when an error occurs. /// - /// + ///
         /// The State should be Initialized
-        /// 
+        /// 
public static event EventHandler ErrorOccured { add @@ -891,9 +891,9 @@ namespace Tizen.Uix.VoiceControl /// /// Event to be invoked when default laungage change. /// - /// + ///
         /// The State should be Initialized
-        /// 
+        /// 
public static event EventHandler CurrentLanguageChanged { add -- 2.7.4