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