4 writes to PropertyInfo
System.Web (4)
UI\ControlBuilder.cs (4)
820entry.PropertyInfo = propInfo; 905entry.PropertyInfo = propInfo; 998entry.PropertyInfo = propInfo; 1163entry.PropertyInfo = propInfo;
16 references to PropertyInfo
System.Web (16)
Compilation\AppSettingsExpressionBuilder.cs (3)
30if (entry.DeclaringType == null || entry.PropertyInfo == null) { 42new CodePrimitiveExpression(entry.PropertyInfo.Name)); 49return GetAppSetting(entry.Expression, target.GetType(), entry.PropertyInfo.Name);
Compilation\BaseTemplateCodeDomTreeGenerator.cs (3)
352if (pseSub.PropertyInfo != null) { 1625if (entry.PropertyInfo != null) { 1692return CodeDomUtility.GenerateExpressionForValue(pse.PropertyInfo, value, typeof(string));
Compilation\PageThemeCodeDomTreeGenerator.cs (2)
272if (pse.PropertyInfo != null) { 273UrlPropertyAttribute urlAttrib = Attribute.GetCustomAttribute(pse.PropertyInfo, typeof(UrlPropertyAttribute)) as UrlPropertyAttribute;
Compilation\ResourceExpressionBuilder.cs (3)
115entry.DeclaringType, entry.PropertyInfo.Name); 131expr.Parameters.Add(new CodePrimitiveExpression(entry.PropertyInfo.Name)); 149expr.Parameters.Add(new CodePrimitiveExpression(entry.PropertyInfo.Name));
UI\ControlBuilder.cs (1)
2479MethodInfo methodInfo = entry.PropertyInfo.GetSetMethod();
UI\SimplePropertyEntry.cs (2)
79if (PropertyInfo != null) { 92rightExpr = CodeDomUtility.GenerateExpressionForValue(PropertyInfo, Value, Type);
UI\SkinBuilder.cs (1)
65MethodInfo methodInfo = entry.PropertyInfo.GetSetMethod();
UI\TemplatePropertyEntry.cs (1)
23return Util.IsMultiInstanceTemplateProperty(PropertyInfo);