BASS.NET API for the Un4seen BASS Audio Library

BassBASS_RecordGetInfo Method

BASS.NET API for the Un4seen BASS Audio Library
Retrieves information on the recording device being used.

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

public static BASS_RECORDINFO BASS_RecordGetInfo()

Return Value

Type: BASS_RECORDINFO
An instance of the BASS_RECORDINFO class on success - else .
Remarks

There is no need to initialize any size member of the BASS_RECORDINFO structure as described in the C/C++ interface, since all marchalling is already handled by the API here.

ERROR CODEDescription
BASS_ERROR_INITBASS_RecordInit(Int32) has not been successfully called - there are no initialized.

Examples

BASS_RECORDINFO info = Bass.BASS_RecordGetInfo(info);
if (info != null)
  Console.WriteLine(info.ToString());
See Also

Reference