there is a web.config:
<configuration>
<system.webServer>
<handlers>
<remove name="something" />
<add name="target" path="*" verb="*" type="Custom.Handler"/>
</handlers>
</system.webServer>
</configuration>
And I need to obtain, in Custom.Handler class, name of the add element, "target" in the example. Is it possible?