문제

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?

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top