1 instantiation of FastPropertyAccessor
System.Web (1)
Util\FastPropertyAccessor.cs (1)
304
s_accessorGenerator = new
FastPropertyAccessor
();
12 references to FastPropertyAccessor
System.Web (12)
UI\BindableTemplateBuilder.cs (1)
115
table[entry.FieldName] =
FastPropertyAccessor
.GetProperty(targetObject, propertyName, InDesigner);
UI\ControlBuilder.cs (2)
2217
object objectValue =
FastPropertyAccessor
.GetProperty(obj, entry.Name, InDesigner);
2253
FastPropertyAccessor
.SetProperty(obj, entry.Name, objectValue, InDesigner);
UI\PropertyMapper.cs (2)
158
currentObject =
FastPropertyAccessor
.GetProperty(currentObject, propertyName, inDesigner);
194
FastPropertyAccessor
.SetProperty(childObj, propertyName, value, inDesigner);
UI\SkinBuilder.cs (3)
53
object originalValue =
FastPropertyAccessor
.GetProperty(control, entry.Name, InDesigner);
86
object objectValue =
FastPropertyAccessor
.GetProperty(control, propertyName, InDesigner);
112
FastPropertyAccessor
.SetProperty(childObj, propertyName, value, InDesigner);
UI\WebParts\BlobPersonalizationState.cs (2)
849
object value =
FastPropertyAccessor
.GetProperty(control, name, control.DesignMode);
1169
FastPropertyAccessor
.SetProperty(control, name, value, control.DesignMode);
UI\WebParts\PersonalizableAttribute.cs (1)
205
object value =
FastPropertyAccessor
.GetProperty(control, name, control.DesignMode);
Util\FastPropertyAccessor.cs (1)
27
private static
FastPropertyAccessor
s_accessorGenerator;