1 write to _property
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\DesignerOptionService.cs (1)
403
_property
= property;
9 references to _property
System.ComponentModel.TypeConverter (9)
System\ComponentModel\Design\DesignerOptionService.cs (9)
407
public override AttributeCollection Attributes =>
_property
.Attributes;
409
public override Type ComponentType =>
_property
.ComponentType;
411
public override bool IsReadOnly =>
_property
.IsReadOnly;
413
public override Type PropertyType =>
_property
.PropertyType;
415
public override bool CanResetValue(object component) =>
_property
.CanResetValue(_target);
417
public override object? GetValue(object? component) =>
_property
.GetValue(_target);
419
public override void ResetValue(object component) =>
_property
.ResetValue(_target);
421
public override void SetValue(object? component, object? value) =>
_property
.SetValue(_target, value);
423
public override bool ShouldSerializeValue(object component) =>
_property
.ShouldSerializeValue(_target);