Factoid.WordList Field
Factoid.WordList Field |
A constant string value that is used to increase recognition accuracy by having the recognizer use a programmatically-defined list of words. The list of words is defined by the WordList property of a RecognizerContext object.
Definition
Visual Basic .NET Public Shared WordList As String C# public static String WordList; Managed C++ public: static String WordList;
Field Value
System.String. The string that indicates to a recognizer to use the word list only.
This field is read-only. This field has no default value.
Remarks
If a string is added to a word list, its capitalized versions are also implicitly added. For instance, adding "hello" implicitly adds "Hello" and "HELLO".
See Also