AudioConfig.GetProperty Method

Definition

Overloads

GetProperty(PropertyId)

Searches for the property named with the given PropertyId value. Added in 1.10.0

GetProperty(String)

Searches for the property that has the given string name. Added in 1.10.0

GetProperty(PropertyId)

Searches for the property named with the given PropertyId value. Added in 1.10.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 the given string name. Added in 1.10.0

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