Alvas.Audio Class Library

AudioCompressionManager.GetFormatList Method (Int32)

Gets the format list for specified format tag and suitable driver.

[Visual Basic]
Overloads Public Shared Function GetFormatList( _
   ByVal formatTag As Integer _
) As FormatDetails()
[C#]
public static FormatDetails[] GetFormatList(
   Int32 formatTag
);

Parameters

formatTag
The format tag.

Return Value

Example

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

AudioCompressionManager Class | Alvas.Audio Namespace | AudioCompressionManager.GetFormatList Overload List