BASS.NET API for the Un4seen BASS Audio Library

BaseDSPStart Method

BASS.NET API for the Un4seen BASS Audio Library
Assigns the DSP to the channel (actually starts using the DSP).

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

public bool Start()

Return Value

Type: Boolean
, if started successfully - else will be returned.
Remarks

Depending on which constructor you used to create an instance of the DSP, this method might have already being called.

Calling this method again, if the DSP has already being assigned will have no effect. You must call Stop before you can call Start again.

Internally this method simply calls BASS_ChannelSetDSP(Int32, DSPPROC, IntPtr, Int32) and thereby uses the ChannelHandle, DSPProc, User and DSPPriority members.

See Also

Reference