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)
412public override AttributeCollection Attributes => _property.Attributes; 414public override Type ComponentType => _property.ComponentType; 416public override bool IsReadOnly => _property.IsReadOnly; 418public override Type PropertyType => _property.PropertyType; 420public override bool CanResetValue(object component) => _property.CanResetValue(_target); 422public override object? GetValue(object? component) => _property.GetValue(_target); 424public override void ResetValue(object component) => _property.ResetValue(_target); 426public override void SetValue(object? component, object? value) => _property.SetValue(_target, value); 428public override bool ShouldSerializeValue(object component) => _property.ShouldSerializeValue(_target);