Class RecognitionResultUpdatedEventArgs
Definition
- Namespace:
- Tizen.Uix.VoiceControlManager
- Assembly:
- Tizen.Uix.VoiceControlManager.dll
The recognition result from the engine. If the duplicated commands are recognized, the event(e.g. Result.Rejected) of a command may be rejected for selecting the command as a priority. If you set similar or same commands, or the recognized results are multi-results, the CommandList has multi commands.
public class RecognitionResultUpdatedEventArgs : IDisposable
- Inheritance
-
objectRecognitionResultUpdatedEventArgs
- Implements
-
System.IDisposable
Properties
View SourceCommands
The recognized command list.
Declaration
public IEnumerable<VoiceCommand> Commands { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<T><VoiceCommand> |
RecognizedText
The recognized text.
Declaration
public string RecognizedText { get; }
Property Value
| Type | Description |
|---|---|
| string |
Result
The result of recognizing a VoiceCommand.
Declaration
public RecognizedResult Result { get; }
Property Value
| Type | Description |
|---|---|
| RecognizedResult |
Methods
View SourceDispose()
Release any unmanaged resources used by this object.
Declaration
public void Dispose()
Dispose(bool)
Release any unmanaged resources used by this object.
Declaration
protected virtual void Dispose(bool disposing)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
~RecognitionResultUpdatedEventArgs()
The destructor of the RecognitionResultEventArgs class.
Declaration
protected ~RecognitionResultUpdatedEventArgs()
Implements
System.IDisposable