1 write to ControlType
System.Web (1)
UI\ControlBuilder.cs (1)
738entry.ControlType = _controlType;
9 references to ControlType
System.Web (9)
Compilation\BaseTemplateCodeDomTreeGenerator.cs (2)
1057CodeVariableDeclarationStatement controlDecl = new CodeVariableDeclarationStatement(entry.ControlType, entry.ControlID); 1066CodeCastExpression castExpression = new CodeCastExpression(entry.ControlType, findControlCallExpression);
Compilation\RouteValueExpressionBuilder.cs (2)
35new CodeTypeOfExpression(new CodeTypeReference(entry.ControlType)), 48return GetRouteValue(context.TemplateControl.Page, entry.Expression.Trim(), entry.ControlType, entry.Name);
UI\BindableTemplateBuilder.cs (2)
104if (control == null || !entry.ControlType.IsInstanceOfType(control)) { 105Debug.Assert(false, "BoundPropertyEntry is of wrong control type or couldn't be found. Expected " + entry.ControlType.Name);
UI\ControlBuilder.cs (3)
2413Debug.Assert(entry.ControlType.IsInstanceOfType(sender), "The DataBinding event sender was not of type " + entry.ControlType.Name); 2427MemberInfo memberInfo = PropertyMapper.GetMemberInfo(entry.ControlType, entry.Name, out objectModelName);