Click or drag to resize
Preferences Class
Parameters that configure the Microsoft Speech Service.
Inheritance Hierarchy
SystemObject
  Microsoft.Bing.SpeechPreferences

Namespace:  Microsoft.Bing.Speech
Assembly:  Microsoft.Bing.Speech (in Microsoft.Bing.Speech.dll) Version: 2.0.1.0 (2.0.1)
Syntax
public class Preferences

The Preferences type exposes the following members.

Constructors
  NameDescription
Public methodPreferences
Initializes a new instance of the Preferences class.
Top
Properties
  NameDescription
Public propertyAuthorizationProvider
Gets the authorization provider.
Public propertyEnableAudioBuffering
Gets a value indicating whether to enable buffering of audio so that in the case of network interruption the SDK will resend the buffered audio starting from the last RecognitionResult.
Public propertyServiceUri
Gets the speech service URI.
Public propertySpeechLanguage
Gets the speech language in IETF language tag format as specified in BCP 47.
Top
Examples
var preferences = new Preferences(locale, serviceUrl, new AuthorizationProvider("******************"));
See Also