X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=Tizen.Uix.VoiceControl%2FTizen.Uix.VoiceControl%2FVoiceCommandList.cs;h=f3b962f4a22ecc479c71f99330356fd021a6395d;hb=39a75a40b0b74c93176677884d69a889ff71f226;hp=4d6af2f02801e5627e1db94e8b3427b931af2788;hpb=769e85bc37f33bef33fbc8601c42c4de6f9dfa33;p=platform%2Fcore%2Fcsapi%2Fuix-voice-control.git diff --git a/Tizen.Uix.VoiceControl/Tizen.Uix.VoiceControl/VoiceCommandList.cs b/Tizen.Uix.VoiceControl/Tizen.Uix.VoiceControl/VoiceCommandList.cs index 4d6af2f..f3b962f 100755 --- a/Tizen.Uix.VoiceControl/Tizen.Uix.VoiceControl/VoiceCommandList.cs +++ b/Tizen.Uix.VoiceControl/Tizen.Uix.VoiceControl/VoiceCommandList.cs @@ -24,6 +24,7 @@ namespace Tizen.Uix.VoiceControl /// /// this class represents list of Voice Commands /// + /// 3 public class VoiceCommandList { internal SafeCommandListHandle _handle; @@ -33,6 +34,7 @@ namespace Tizen.Uix.VoiceControl /// /// Public Constructor /// + /// 3 /// /// http://tizen.org/privilege/recorder /// @@ -49,7 +51,7 @@ namespace Tizen.Uix.VoiceControl /// This Exception can be due to Not Supported. public VoiceCommandList() { - SafeCommandListHandle handle = new SafeCommandListHandle(); + SafeCommandListHandle handle; ErrorCode error = VcCmdListCreate(out handle); if (error != ErrorCode.None) { @@ -68,6 +70,7 @@ namespace Tizen.Uix.VoiceControl /// Gets command count of list. /// -1 is returned in case of internal failure. /// + /// 3 /// /// Command counts of the list. /// @@ -97,6 +100,7 @@ namespace Tizen.Uix.VoiceControl /// Get current command from command list by index. /// null will be returned in case of Empty List /// + /// 3 /// /// Current command from the command list. /// @@ -125,6 +129,7 @@ namespace Tizen.Uix.VoiceControl /// /// Adds command to command list. /// + /// 3 /// /// http://tizen.org/privilege/recorder /// @@ -136,7 +141,6 @@ namespace Tizen.Uix.VoiceControl /// http://tizen.org/feature/microphone /// /// The command - /// This Exception can be due to Invalid Parameter. /// This Exception can be due to Permission Denied. /// This Exception can be due to Not Supported. /// This will occur if the provide parameter is null. @@ -153,6 +157,7 @@ namespace Tizen.Uix.VoiceControl /// /// Removes command from command list. /// + /// 3 /// /// http://tizen.org/privilege/recorder /// @@ -164,7 +169,6 @@ namespace Tizen.Uix.VoiceControl /// http://tizen.org/feature/microphone /// /// The command - /// This Exception can be due to Invalid Parameter. /// This Exception can be due to Permission Denied. /// This Exception can be due to Not Supported. /// This will occur if the provide parameter is null. @@ -181,6 +185,7 @@ namespace Tizen.Uix.VoiceControl /// /// Retrieves all commands of command list. /// + /// 3 /// /// http://tizen.org/privilege/recorder /// @@ -216,6 +221,7 @@ namespace Tizen.Uix.VoiceControl /// /// Moves index to first command. /// + /// 3 /// /// http://tizen.org/privilege/recorder /// @@ -242,6 +248,7 @@ namespace Tizen.Uix.VoiceControl /// /// Moves index to last command. /// + /// 3 /// /// http://tizen.org/privilege/recorder /// @@ -268,6 +275,7 @@ namespace Tizen.Uix.VoiceControl /// /// Moves index to next command. /// + /// 3 /// /// http://tizen.org/privilege/recorder /// @@ -298,6 +306,7 @@ namespace Tizen.Uix.VoiceControl /// /// Moves index to previous command. /// + /// 3 /// /// http://tizen.org/privilege/recorder ///