SpeechRecognizer.SupportedTopicLanguages Property

Definition

Gets the collection of languages supported by the pre-defined, web-service grammars of the SpeechRecognitionTopicConstraint objects specified in the Constraints property.

public:
 static property IVectorView<Language ^> ^ SupportedTopicLanguages { IVectorView<Language ^> ^ get(); };
static IVectorView<Language> SupportedTopicLanguages();
public static IReadOnlyList<Language> SupportedTopicLanguages { get; }
var iVectorView = SpeechRecognizer.supportedTopicLanguages;
Public Shared ReadOnly Property SupportedTopicLanguages As IReadOnlyList(Of Language)

Property Value

The collection of languages supported by the pre-defined, web-service grammars.

Remarks

Constraints, or grammars, define the spoken words and phrases that can be matched by the speech recognizer. You can specify one of the pre-defined, web-service grammars or you can create a custom grammar that is installed with your app.

Predefined dictation and web-search grammars provide speech recognition for your app without requiring you to author a grammar. When using these grammars, speech recognition is performed by a remote web service and the results are returned to the device

Applies to

See also