Click or drag to resize
AudioCompressionManagerGetDriverList Method
Gets the driver list.

Namespace: Alvas.Audio
Assembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax
public static DriverDetails[] GetDriverList()

Return Value

Type: DriverDetails

[Missing <returns> documentation for "M:Alvas.Audio.AudioCompressionManager.GetDriverList"]

Examples
This example shows simple using of GetDriverList method.
DriverDetails[] driverList = AudioCompressionManager.GetDriverList();

foreach (DriverDetails driverDetails in driverList)
{
    Console.WriteLine("Driver: {0}, Version: {1}, LongName: {2}", driverDetails.Driver, driverDetails.DriverVersion, driverDetails.LongName);
}
See Also