BASS.NET API for the Un4seen BASS Audio Library

BassWasapiBASS_WASAPI_SetMute Method

BASS.NET API for the Un4seen BASS Audio Library
Sets the mute status of the current Wasapi device/driver (endpoint).

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

[DllImportAttribute("basswasapi")]
public static bool BASS_WASAPI_SetMute(
	BASSWASAPIVolume mode,
	bool mute
)

Parameters

mode
Type: Un4seen.BassWasapiBASSWASAPIVolume
The type of volume to set:
BASS_WASAPI_VOL_SESSIONSet the session volume.
BASS_WASAPI_VOL_DEVICESet the device volume.
mute
Type: SystemBoolean
to mute the device, to unmute the device.

Return Value

Type: Boolean
If successful, then is returned, else is returned. Use BASS_ErrorGetCode to get the error code.
Remarks

When using multiple devices, the current thread's device setting (as set with BASS_WASAPI_SetDevice(Int32)) determines which device this function call applies to.

ERROR CODEDescription
BASS_ERROR_INITBASS_WASAPI_Init(Int32, Int32, Int32, BASSWASAPIInit, Single, Single, WASAPIPROC, IntPtr) has not been successfully called.
BASS_ERROR_NOTAVAILThere is no volume control available.
BASS_ERROR_UNKNOWNSome other mystery problem!

See Also

Reference