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