Base:
property
PropertyType
System.ComponentModel.PropertyDescriptor.PropertyType
12 references to PropertyType
System.ComponentModel.TypeConverter (12)
System\ComponentModel\ReflectPropertyDescriptor.cs (12)
202if (_defaultValue != null && PropertyType.IsEnum && PropertyType.GetEnumUnderlyingType() == _defaultValue.GetType()) 204_defaultValue = Enum.ToObject(PropertyType, _defaultValue); 302bool storedAsUnderlyingType = defaultValue != null && PropertyType.IsEnum && PropertyType.GetEnumUnderlyingType() == defaultValue.GetType(); 304Enum.ToObject(PropertyType, defaultValue!) : 335_propInfo = _componentClass.GetProperty(Name, bindingFlags, binder: null, PropertyType, Type.EmptyTypes, Array.Empty<ParameterModifier>()); 427PropertyInfo? p = t.GetProperty(name, bindingFlags, binder: null, PropertyType, Type.EmptyTypes, null); 448_propInfo = _componentClass.GetProperty(Name, bindingFlags, binder: null, PropertyType, Type.EmptyTypes, Array.Empty<ParameterModifier>()); 554internal Type ExtenderGetType() => PropertyType; 776foreach (Attribute typeAttr in TypeDescriptor.GetAttributes(PropertyType)) 818memberInfo = currentReflectType.GetProperty(Name, bindingFlags, binder: null, PropertyType, Type.EmptyTypes, Array.Empty<ParameterModifier>());