6 writes to defaultValue
System (6)
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (6)
171
defaultValue
= oldProp.defaultValue;
185
defaultValue
= dva.Value;
188
defaultValue
= Enum.ToObject(PropertyType, defaultValue);
321
defaultValue
= ((DefaultValueAttribute)a).Value;
324
defaultValue
= Enum.ToObject(PropertyType, defaultValue);
328
defaultValue
= noValue;
9 references to defaultValue
System (9)
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (9)
171
defaultValue = oldProp.
defaultValue
;
187
if (
defaultValue
!= null && PropertyType.IsEnum && PropertyType.GetEnumUnderlyingType() ==
defaultValue
.GetType()) {
188
defaultValue = Enum.ToObject(PropertyType,
defaultValue
);
323
if (
defaultValue
!= null && PropertyType.IsEnum && PropertyType.GetEnumUnderlyingType() ==
defaultValue
.GetType()) {
324
defaultValue = Enum.ToObject(PropertyType,
defaultValue
);
331
return
defaultValue
;
578
return !object.Equals(ExtenderGetValue(provider, component),
defaultValue
);