BASS.NET API for the Un4seen BASS Audio Library

BassWasapiBASS_WASAPI_GetDeviceInfo Method (Int32)

BASS.NET API for the Un4seen BASS Audio Library
Retrieves information on a Wasapi device (endpoint).

Namespace:  Un4seen.BassWasapi
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public static BASS_WASAPI_DEVICEINFO BASS_WASAPI_GetDeviceInfo(
	int device
)

Parameters

device
Type: SystemInt32
The device to get the information of... 0 = first.

Return Value

Type: BASS_WASAPI_DEVICEINFO
If successful, then an instance of the BASS_WASAPI_DEVICEINFO class is returned, else is returned. Use BASS_ErrorGetCode to get the error code.
Remarks

This function can be used to enumerate the available Wasapi devices (endpoints) for a setup dialog.

Note: Input (capture) devices can be determined by evaluating the flags member (which must be either BASS_DEVICE_INPUT or BASS_DEVICE_LOOPBACK).

ERROR CODEDescription
BASS_ERROR_WASAPIWASAPI is not available.
BASS_ERROR_DEVICEThe device number specified is invalid.

Examples

BASS_WASAPI_DEVICEINFO info;
for (int n = 0; (info = BassWasapi.BASS_WASAPI_GetDeviceInfo(n)) != null; n++)
{
  ...
}
Or use the BASS_WASAPI_GetDeviceInfos method for more convenience.
See Also

Reference