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