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