You can get the list of registered HttpHandler from web.config as follows:
using System.Configuration; using System.Web.Configuration; Configuration cfg = WebConfigurationManager.OpenWebConfiguration("/"); HttpHandlersSection hdlrs = (HttpHandlersSection)cfg.GetSection("system.web/httpHandlers");
Ofer zelig
source share