11 references to GetReflectionType
System.ComponentModel.TypeConverter (2)
System\ComponentModel\AttributeCollection.cs (1)
260Type reflect = TypeDescriptor.GetReflectionType(attributeType);
System\ComponentModel\EnumConverter.cs (1)
242static Type GetTypeDescriptorReflectionType(Type enumType) => TypeDescriptor.GetReflectionType(enumType);
System.Windows.Forms.Design (8)
System\ComponentModel\Design\CollectionEditor.cs (1)
176PropertyInfo[] properties = TypeDescriptor.GetReflectionType(CollectionType).GetProperties(BindingFlags.Public | BindingFlags.Instance);
System\ComponentModel\Design\DesignSurface.cs (2)
277ConstructorInfo? ctor = TypeDescriptor.GetReflectionType(type).GetConstructor([]); 286ctor = TypeDescriptor.GetReflectionType(type).GetConstructor(BindingFlags.Public | BindingFlags.Instance | BindingFlags.ExactBinding, null, [typeof(IContainer)], null);
System\ComponentModel\Design\InheritanceService.cs (1)
87Type reflect = TypeDescriptor.GetReflectionType(type);
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.ModifiersInheritedExtenderProvider.cs (2)
89FieldInfo? field = TypeDescriptor.GetReflectionType(baseType).GetField(name, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static); 114PropertyInfo? prop = TypeDescriptor.GetReflectionType(baseType).GetProperty(name, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static);
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
159return TypeDescriptor.GetReflectionType(type);
System\ComponentModel\Design\Serialization\DesignerSerializationManager.cs (1)
304foreach (ConstructorInfo info in TypeDescriptor.GetReflectionType(type).GetConstructors(BindingFlags.Instance | BindingFlags.Public | BindingFlags.CreateInstance))
System.Windows.Forms.Design.Tests (1)
EnsureEditorsTests.cs (1)
165Type reflectType = TypeDescriptor.GetReflectionType(type);