Asynchronous Callback
The VoiceRecognition action is completely and successfully finished upon receiving the VoiceRecognition_Complete event.
| Parameter Name | .NET Type | Description |
|---|---|---|
| ConnectionId | System.String | The same value as the ConnectionId passed in as an action parameter. |
| Meaning | System.String | The top-match phrase recognized by Nuance OSR. |
| Termination Condition | System.String | Describes the condition which caused the operation to complete. |
| Score | System.Int32 | The confidence score of the Meaning. The value can be between 0 - 1000. With VR_XMLResult, scores can be between 0 - 100. |
| VR_XMLResult | System.String | The full recognition result in XML format of the action. All scores and meanings are returned in this XML content. To help parse through the full result data, a number of helper actions exist:
VoiceRecResultList, so in general one should create a local variable of type VoiceRecResultList initialized with this action parameter. The XmlQuery action takes the XML content as a String, so if you intend to use the XmlQuery action, you should make a String variable that initializes with this action parameter. It is also valid to have two variables of different types that both initialize with the same action parameter. |