BASS.NET API for the Un4seen BASS Audio LibraryCONNECTEDFILTERSPROC DelegateBASS.NET API for the Un4seen BASS Audio Library
User defined callback function to receive connected filters (see BASS_DSHOW_ChannelGetConnectedFilters(Int32, CONNECTEDFILTERSPROC, IntPtr)).

Namespace: Un4seen.Bass.AddOn.DShow
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.13.3
Syntax

public delegate bool CONNECTEDFILTERSPROC(
	IntPtr filter,
	string filterName,
	bool hasPropertyPage,
	IntPtr user
)

Parameters

filter
Type: SystemIntPtr
A pointer to the connected filter instance (IBaseFilter). Note that this instance should be used inside the callback as it is released automaticaly once the callback returned.
filterName
Type: SystemString
The name of the connected filter.
hasPropertyPage
Type: SystemBoolean
if the filter has a property page (dialog), if not.
user
Type: SystemIntPtr
The user instance data given when BASS_DSHOW_ChannelGetConnectedFilters(Int32, CONNECTEDFILTERSPROC, IntPtr) was called.

Return Value

Type: Boolean
to continue, else .
See Also

Reference