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)
407public override AttributeCollection Attributes => _property.Attributes; 409public override Type ComponentType => _property.ComponentType; 411public override bool IsReadOnly => _property.IsReadOnly; 413public override Type PropertyType => _property.PropertyType; 415public override bool CanResetValue(object component) => _property.CanResetValue(_target); 417public override object? GetValue(object? component) => _property.GetValue(_target); 419public override void ResetValue(object component) => _property.ResetValue(_target); 421public override void SetValue(object? component, object? value) => _property.SetValue(_target, value); 423public override bool ShouldSerializeValue(object component) => _property.ShouldSerializeValue(_target);