5 references to ControlBuilderInterceptorType
System.Web (5)
Compilation\CompilationUtil.cs (2)
162
if (!String.IsNullOrWhiteSpace(ps.
ControlBuilderInterceptorType
)) {
163
recompilationHash.AddObject(ps.
ControlBuilderInterceptorType
);
Compilation\ControlBuilderInterceptor.cs (1)
9
/// A type that extends this class can be registered in web.config using <see cref="System.Web.Configuration.CompilationSection.
ControlBuilderInterceptorType
"/> property
Configuration\CompilationSection.cs (2)
922
if (_controlBuilderInterceptorType == null && !String.IsNullOrWhiteSpace(
ControlBuilderInterceptorType
)) {
925
_controlBuilderInterceptorType = CompilationUtil.LoadTypeWithChecks(
ControlBuilderInterceptorType
, typeof(ControlBuilderInterceptor), null, this, controlBuilderInterceptorTypeAttributeName);