Note
Please see Azure Cognitive Services for Speech documentation for the latest supported speech solutions.
SemanticValue Members
Include Protected Members
Include Inherited Members
Represents the semantic organization of a recognized phrase.
The SemanticValue type exposes the following members.
Constructors
Name | Description | |
---|---|---|
SemanticValue(Object) | Initializes a new instance of the SemanticValue class and specifies a semantic value. | |
SemanticValue(String, Object, Single) | Initializes a new instance of the SemanticValue class and specifies a semantic value, a key name, and a confidence level. |
Top
Properties
Name | Description | |
---|---|---|
Confidence | Returns a relative measure of the certainty as to the correctness of the semantic parsing that returned the current instance of SemanticValue. | |
Count | Returns the number of child SemanticValue objects under the current SemanticValue instance. | |
Item | Returns child SemanticValue instances that belong to the current SemanticValue. | |
Value | Gets the information contained in the current SemanticValue. |
Top
Methods
Name | Description | |
---|---|---|
Contains | Indicates whether the current SemanticValue instance collection contains a specific key and specific instance of SemanticValue expressed as a key value pair. | |
ContainsKey | Indicates whether the current SemanticValue instance collection contains a child SemanticValue instance with a given key string. | |
Equals | Determines whether a specified object is an instance of SemanticValue and equal to the current instance of SemanticValue. (Overrides Object.Equals(Object).) | |
Finalize | (inherited from Object) | |
GetHashCode | Provides a hash code for a SemanticValue object. (Overrides Object.GetHashCode().) | |
GetType | (inherited from Object) | |
MemberwiseClone | (inherited from Object) | |
ToString | (inherited from Object) |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
ICollection<KeyValuePair<String, SemanticValue>>.Add | Adds the specified key and SemanticValue to the collection. | |
IDictionary<String, SemanticValue>.Add | Adds the specified key and SemanticValue to the dictionary. | |
ICollection<KeyValuePair<String, SemanticValue>>.Clear | Removes all key/value pairs from the collection. | |
ICollection<KeyValuePair<String, SemanticValue>>.CopyTo | Copies a key/value pair to a specific location in a targeted array. | |
IEnumerable<KeyValuePair<String, SemanticValue>>.GetEnumerator | Returns an enumerator that iterates through a collection. | |
IEnumerable.GetEnumerator | Returns an enumerator that iterates through a collection. | |
ICollection<KeyValuePair<String, SemanticValue>>.IsReadOnly | Gets a value that indicates whether the collection is read-only. | |
IDictionary<String, SemanticValue>.Keys | Gets a collection that contains the keys from a dictionary of key/value pairs. | |
ICollection<KeyValuePair<String, SemanticValue>>.Remove | Removes the specified key and SemanticValue from the collection. | |
IDictionary<String, SemanticValue>.Remove | Removes the specified key and SemanticValue from the dictionary. | |
IDictionary<String, SemanticValue>.TryGetValue | Gets the SemanticValue associated with the specified key. | |
IDictionary<String, SemanticValue>.Values | Gets a collection that contains the values from a dictionary of key/value pairs. |
Top