C# Class UnityEngine.Windows.Speech.PhraseRecognizedEventArgs

ファイルを表示 Open project: CarlosHBC/UnityDecompiled Class Usage Examples

Public Properties

Property Type Description
confidence ConfidenceLevel
phraseDuration System.TimeSpan
phraseStartTime System.DateTime
semanticMeanings UnityEngine.Windows.Speech.SemanticMeaning[]
text string

Private Methods

Method Description
PhraseRecognizedEventArgs ( string text, ConfidenceLevel confidence, SemanticMeaning semanticMeanings, System.DateTime phraseStartTime, System.TimeSpan phraseDuration ) : System

Property Details

confidence public_oe property

A measure of correct recognition certainty.

public ConfidenceLevel confidence
return ConfidenceLevel

phraseDuration public_oe property

The time it took for the phrase to be uttered.

public TimeSpan,System phraseDuration
return System.TimeSpan

phraseStartTime public_oe property

The moment in time when uttering of the phrase began.

public DateTime,System phraseStartTime
return System.DateTime

semanticMeanings public_oe property

A semantic meaning of recognized phrase.

public SemanticMeaning[],UnityEngine.Windows.Speech semanticMeanings
return UnityEngine.Windows.Speech.SemanticMeaning[]

text public_oe property

The text that was recognized.

public string text
return string