BASS.NET API for the Un4seen BASS Audio Library

BaseDSP Constructor (Int32, Int32, IntPtr)

BASS.NET API for the Un4seen BASS Audio Library
Default constructor, which already evaluates the channel handle and assigns the DSP (Start will be called automatically).

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

public BaseDSP(
	int channel,
	int priority,
	IntPtr user
)

Parameters

channel
Type: SystemInt32
Channel that the DSP is being applied to.
priority
Type: SystemInt32
The priority of the DSP, which determines it's position in the DSP chain - DSPs with higher priority are called before those with lower.
user
Type: SystemIntPtr
User instance data to pass to the callback function.
Exceptions

ExceptionCondition
ArgumentExceptionInvalid channel used.
Remarks

The DSP is automatically assigned by this constructor!

Use Stop to remove the DSP (you can (re)assign the DSP at any time again by calling Start).

If an instance of a derived class s being disposed, an already assigned DSP will automatically be removed from the channel.

See Also

Reference