Click or drag to resize
SpeechRecognitionServiceFactoryCreateDataClientWithIntent Method (String, String, String, String)
Create a DataRecognitionClientWithIntent -- for speech recognition with data (for example from a file or audio source). The data is broken up into buffers and each buffer is sent to the Speech Recognition Service. No modification is done to the buffers, so the user can apply their own Silence Detection. Returns both text recognition results as well as structured intent results in JSON form from the LUIS (see https://LUIS.ai) service. The audio must be PCM, mono, 16-bit sample, with sample rate of 8000 Hz or 16000 Hz.

Namespace: Microsoft.CognitiveServices.SpeechRecognition
Assembly: SpeechClient (in SpeechClient.dll) Version: 0.0.0.0
Syntax
public static DataRecognitionClientWithIntent CreateDataClientWithIntent(
	string language,
	string primaryOrSecondaryKey,
	string luisAppId,
	string luisSubscriptionId
)

Parameters

language
Type: String

American English: "en-us"

British English: "en-gb"

German: "de-de"

Spanish: "es-es"

French: "fr-fr"

Italian: "it-it"

Mandarin: "zh-cn"

primaryOrSecondaryKey
Type: String
The primary or the secondary key. If you want to change the key(which is probably a good idea to do every once in a while in case it gets leaked somehow), you would have some downtime if there was only one key available. So you get two, the primary and the secondary.If you disable one key the other key will still work giving you time to replace the disabled one.
luisAppId
Type: String
Once you have configured the LUIS service to create and publish an intent model (see https://LUIS.ai) you will be given an Application ID guid. Use that GUID here.
luisSubscriptionId
Type: String
Once you create a LUIS account (see https://LUIS.ai) you will be given a Subscription ID. Use that secret here.

Return Value

Type: DataRecognitionClientWithIntent
The created DataRecognitionClientWithIntent.
See Also