BASS.NET API for the Un4seen BASS Audio Library

BassAsioHandlerStop Method

BASS.NET API for the Un4seen BASS Audio Library
Stops the Asio Device.

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

public bool Stop()

Return Value

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

Calls BASS_ASIO_Stop internally on the Device being used by the Asio handler (if not already stopped).

If you need to start the Asio device you might call Start(Int32, Int32).

Caution: If you are using multiple instances of the BassAsioHandler which use the same Asio Device calling this method impacts the other instances as well, as the Asio Device itself is being stopped. In such case you might call Dispose to unjoin and disable only the ASIO channels used by this instance.

See Also

Reference