0

In the web.config, there is the declare of the Elmah section.

<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah"/>

This means that the class of Elmah.SecuritySectionHandler will handle the section information. But I opened the Elmah.dll and tried to find this class. I can't find this class in the assembly. Why?

PeeHaa
  • 71,436
  • 58
  • 190
  • 262
Robin Sun
  • 1,352
  • 3
  • 20
  • 45

1 Answers1

0

Probably because it is marked as internal. See the source code from the Elmah repository for SecuritySectionHandler.cs.

shf301
  • 31,086
  • 2
  • 52
  • 86
  • Yes, you are right. I am also wondering maybe the key word of internal is the matter. Do you have more information about why the interal class cannot be seen from assembly.dll? – Robin Sun Aug 28 '13 at 10:40