Click or drag to resize
AudioCompressionManagerGetFormatList Method (Int32)
Gets the format list for specified format tag and suitable driver.

Namespace: Alvas.Audio
Assembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax
public static FormatDetails[] GetFormatList(
	int formatTag
)

Parameters

formatTag
Type: SystemInt32
The format tag.

Return Value

Type: FormatDetails

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

Examples
This example shows simple using of GetFormatList method.
FormatDetails[] fdArr = AudioCompressionManager.GetFormatList(AudioCompressionManager.ImaAdpcmFormatTag);
foreach (FormatDetails fd in fdArr)
{
    Console.WriteLine(fd.ToString());
}
See Also