Click or drag to resize
RecorderExGetRecorderName Method
Returns recorder name by index.

Namespace: Alvas.Audio
Assembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax
public static string GetRecorderName(
	int index
)

Parameters

index
Type: SystemInt32

[Missing <param name="index"/> documentation for "M:Alvas.Audio.RecorderEx.GetRecorderName(System.Int32)"]

Return Value

Type: String

[Missing <returns> documentation for "M:Alvas.Audio.RecorderEx.GetRecorderName(System.Int32)"]

Examples
This example shows simple using of GetRecorderName method.
for (int i = 0; i < RecorderEx.RecorderCount; i++)
{
    Console.WriteLine(RecorderEx.GetRecorderName(i));
}
See Also