28 references to TargetFrameworkUtil
System.Web (28)
Compilation\BaseResourcesBuildProvider.cs (1)
133writer.TypeNameConverter = System.Web.UI.TargetFrameworkUtil.TypeNameConverter;
Compilation\BrowserCapabilitiesCompiler.cs (2)
321if ((!TargetFrameworkUtil.HasMethod(baseType, parentName + "ProcessBrowsers", flags)) || 322(!TargetFrameworkUtil.HasMethod(baseType, parentName + "ProcessGateways", flags))) {
Compilation\BuildManagerHost.cs (1)
575TargetFrameworkUtil.CBMTypeDescriptionProviderBridge = _client.CBMTypeDescriptionProviderBridge;
UI\BaseParser.cs (1)
118return TargetFrameworkUtil.IsSupportedType(typeof(TagRegex35));
UI\CollectionBuilder.cs (3)
49PropertyInfo propInfo = TargetFrameworkUtil.GetProperty(parentBuilder.ControlType, 58propInfo = TargetFrameworkUtil.GetProperty(ControlType, "Item", bindingFlags, types: new Type[] { typeof(int) }); 62propInfo = TargetFrameworkUtil.GetProperty(ControlType, "Item", bindingFlags);
UI\ControlBuilder.cs (12)
358ParseTimeData.EventDescriptors = TargetFrameworkUtil.GetEvents(_controlType); 593ParseTimeData.PropertyDescriptors = TargetFrameworkUtil.GetProperties(_controlType); 714if (TargetFrameworkUtil.GetEvent(ControlType, "DataBinding") == null) { 1524ConstructorNeedsTagAttribute cnta = (ConstructorNeedsTagAttribute)TargetFrameworkUtil.GetAttributes(ControlType)[typeof(ConstructorNeedsTagAttribute)]; 1586PropertyInfo pInfo = TargetFrameworkUtil.GetProperty(_controlType, tagName, BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.IgnoreCase); 1594object[] attrs = TargetFrameworkUtil.GetCustomAttributes(ControlType, typeof(ParseChildrenAttribute), /*inherit*/ true); 1715object[] attrs = TargetFrameworkUtil.GetCustomAttributes(controlType, typeof(ControlBuilderAttribute), /*inherit*/ true); 1730PropertyInfo pInfo = TargetFrameworkUtil.GetProperty(_controlType, tagName, BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.IgnoreCase); 1985object[] attrs = TargetFrameworkUtil.GetCustomAttributes(controlType, typeof(ParseChildrenAttribute), /*inherit*/ true); 2415_bindingContainerDescriptor = TargetFrameworkUtil.GetProperties(typeof(Control))["BindingContainer"]; 2524FieldInfo fieldInfo = TargetFrameworkUtil.GetField(templateControl.GetType(), control.ID, 3093propertyDescriptors = TargetFrameworkUtil.GetProperties(propInfo.DeclaringType);
UI\DesignTimeTemplateParser.cs (2)
48TargetFrameworkUtil.DesignerHost = data.DesignerHost; 54TargetFrameworkUtil.DesignerHost = null;
UI\PropertyMapper.cs (4)
67propInfo = TargetFrameworkUtil.GetProperty(currentType, propName, flags); 71propInfo = TargetFrameworkUtil.GetProperty(currentType, propName, flags); 75fieldInfo = TargetFrameworkUtil.GetField(currentType, propName, flags); 181PropertyDescriptorCollection properties = TargetFrameworkUtil.GetProperties(childObject);
UI\TargetFrameworkUtil.cs (2)
108TypeDescriptionProviderService service = TargetFrameworkUtil.TypeDescriptionProviderService; 116TypeDescriptionProviderService service = TargetFrameworkUtil.TypeDescriptionProviderService;