8 references to BuilderType
System.Web (8)
UI\ControlBuilder.cs (5)
1684
Util.CheckAssignableType(typeof(ControlBuilder), cba.
BuilderType
);
1686
if (cba.
BuilderType
.IsPublic) {
1688
factory = s_controlBuilderFactoryGenerator.CreateFactory(cba.
BuilderType
);
1691
Debug.Assert(false, "The type " + cba.
BuilderType
.Name + " should be made public for better performance.");
1695
factory = new ReflectionBasedControlBuilderFactory(cba.
BuilderType
);
UI\ControlBuilderAttribute.cs (3)
59
return ((
BuilderType
!= null) ?
BuilderType
.GetHashCode() : 0);
71
return((ControlBuilderAttribute)obj).
BuilderType
== builderType;