Class VoiceCommand
Definition
- Namespace:
- Tizen.Uix.VoiceControlManager
- Assembly:
- Tizen.Uix.VoiceControlManager.dll
This class represents a voice command.
C#Copypublic class VoiceCommand : IDisposable
- Inheritance
-
objectVoiceCommand
- Implements
-
System.IDisposable
Constructors
Declaration
C#Copypublic VoiceCommand()
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | This exception can be due to out of memory. |
System.UnauthorizedAccessException | This exception can be due to permission denied. |
System.NotSupportedException | The required feature is not supported. |
Properties
Command
Gets or sets the command. A get empty string will be returned in case of some internal error.
Declaration
C#Copypublic string Command { get; set; }
Property Value
Type | Description |
---|---|
string |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | This exception can be due to an invalid parameter. |
System.UnauthorizedAccessException | This exception can be due to permission denied. |
System.NotSupportedException | The required feature is not supported. |
Declaration
C#Copypublic CommandType CommandType { get; set; }
Property Value
Type | Description |
---|---|
CommandType |
Remarks
If you do not set the command type, the default value is undefined. You should set the type if the command is valid.
Exceptions
Type | Condition |
---|---|
System.ArgumentException | This exception can be due to an invalid parameter. |
System.UnauthorizedAccessException | This exception can be due to permission denied. |
System.NotSupportedException | The required feature is not supported. |
Declaration
C#Copypublic CommandFormat Format { get; set; }
Property Value
Type | Description |
---|---|
CommandFormat |
Remarks
The default format is Fixed.
Exceptions
Type | Condition |
---|---|
System.ArgumentException | This exception can be due to an invalid parameter. |
System.NotSupportedException | The required feature is not supported. |
UnfixedCommand
Gets the unfixed command. This property should be used for commands which have non-fixed format. An empty string will be returned in case of some internal error.
Declaration
C#Copypublic string UnfixedCommand { get; }
Property Value
Type | Description |
---|---|
string |
Methods
Declaration
C#Copypublic void Dispose()
Declaration
C#Copyprotected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
Declaration
C#Copyprotected ~VoiceCommand()