1 write to _property
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\DesignerOptionService.cs (1)
408
_property
= property;
9 references to _property
System.ComponentModel.TypeConverter (9)
System\ComponentModel\Design\DesignerOptionService.cs (9)
412
public override AttributeCollection Attributes =>
_property
.Attributes;
414
public override Type ComponentType =>
_property
.ComponentType;
416
public override bool IsReadOnly =>
_property
.IsReadOnly;
418
public override Type PropertyType =>
_property
.PropertyType;
420
public override bool CanResetValue(object component) =>
_property
.CanResetValue(_target);
422
public override object? GetValue(object? component) =>
_property
.GetValue(_target);
424
public override void ResetValue(object component) =>
_property
.ResetValue(_target);
426
public override void SetValue(object? component, object? value) =>
_property
.SetValue(_target, value);
428
public override bool ShouldSerializeValue(object component) =>
_property
.ShouldSerializeValue(_target);