Developing ISAPI Filters

You can use an ISAPI filter to receive notifications of various events during the processing of HTTP requests. Filters are similar to extensions in that they are implemented as DLLs and run in the same process as IIS. The fundamental difference between filters and extensions is that extensions are only loaded when they are requested by a client. Filters are loaded when you start IIS, and are kept in memory until you shut IIS down. Once a filter is loaded, it indicates the events that IIS should send notification about. Subsequently, IIS will notify the filter each time one of the registered events occurs.

This section contains the following: