Base:
property
PropertyType
System.ComponentModel.PropertyDescriptor.PropertyType
12 references to PropertyType
System (12)
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (12)
187if (defaultValue != null && PropertyType.IsEnum && PropertyType.GetEnumUnderlyingType() == defaultValue.GetType()) { 188defaultValue = Enum.ToObject(PropertyType, defaultValue); 323if (defaultValue != null && PropertyType.IsEnum && PropertyType.GetEnumUnderlyingType() == defaultValue.GetType()) { 324defaultValue = Enum.ToObject(PropertyType, defaultValue); 346propInfo = componentClass.GetProperty(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]); 463PropertyInfo p = t.GetProperty(name, bindingFlags, null, PropertyType, new Type[0], null); 482propInfo = componentClass.GetProperty(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]); 602return PropertyType; 793foreach (Attribute typeAttr in TypeDescriptor.GetAttributes(PropertyType)) { 833memberInfo = currentReflectType.GetProperty(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]);