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.

C#
Copy
public class RecognitionResultUpdatedEventArgs : IDisposable
Inheritance
object
RecognitionResultUpdatedEventArgs
Implements
System.IDisposable

Properties

View Source

Commands

The recognized command list.

Declaration
C#
Copy
public IEnumerable<VoiceCommand> Commands { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<T><VoiceCommand>
View Source

RecognizedText

The recognized text.

Declaration
C#
Copy
public string RecognizedText { get; }
Property Value
Type Description
string
View Source

Result

The result of recognizing a VoiceCommand.

Declaration
C#
Copy
public RecognizedResult Result { get; }
Property Value
Type Description
RecognizedResult

Methods

View Source

Dispose()

Release any unmanaged resources used by this object.

Declaration
C#
Copy
public void Dispose()
View Source

Dispose(bool)

Release any unmanaged resources used by this object.

Declaration
C#
Copy
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.

View Source

~RecognitionResultUpdatedEventArgs()

The destructor of the RecognitionResultEventArgs class.

Declaration
C#
Copy
protected ~RecognitionResultUpdatedEventArgs()

Implements

System.IDisposable