Collection of filters' information objects.

Namespace:  AForge.Video.DirectShow
Assembly:  AForge.Video.DirectShow (in AForge.Video.DirectShow.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public class FilterInfoCollection : CollectionBase

Remarks

The class allows to enumerate DirectShow filters of specified category. For a list of categories see FilterCategory.

Sample usage:

CopyC#
// enumerate video devices
videoDevices = new FilterInfoCollection( FilterCategory.VideoInputDevice );
// list devices
foreach ( FilterInfo device in videoDevices )
{
    // ...
}

Inheritance Hierarchy

System..::.Object
  System.Collections..::.CollectionBase
    AForge.Video.DirectShow..::.FilterInfoCollection

See Also