SpeechConfig.GetProperty Method

Definition

Overloads

GetProperty(PropertyId)

Searches for the property named with this PropertyId enumeration. Added in 1.3.0

GetProperty(String)

Searches for the property that has this string name.

GetProperty(PropertyId)

Searches for the property named with this PropertyId enumeration. Added in 1.3.0

public string GetProperty (Microsoft.CognitiveServices.Speech.PropertyId id);
member this.GetProperty : Microsoft.CognitiveServices.Speech.PropertyId -> string
Public Function GetProperty (id As PropertyId) As String

Parameters

id
PropertyId

PropertyId of the property

Returns

Value of the property

Applies to

GetProperty(String)

Searches for the property that has this string name.

public string GetProperty (string name);
member this.GetProperty : string -> string
Public Function GetProperty (name As String) As String

Parameters

name
String

Name of the property

Returns

Value of the property

Remarks

A small number of properties are stored using string names. In most cases, you will use GetProperty(PropertyId) instead of this method.

Applies to