1 write to IsReadOnly
System.ComponentModel.Primitives (1)
System\ComponentModel\ReadOnlyAttribute.cs (1)
39public ReadOnlyAttribute(bool isReadOnly) => IsReadOnly = isReadOnly;
6 references to IsReadOnly
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\MetadataPropertyDescriptorWrapper.cs (1)
20_isReadOnly = readOnlyAttribute.IsReadOnly;
System.ComponentModel.Primitives (4)
System\ComponentModel\ReadOnlyAttribute.cs (4)
48value is ReadOnlyAttribute other && other.IsReadOnly == IsReadOnly; 52public override bool IsDefaultAttribute() => IsReadOnly == Default.IsReadOnly;
System.ComponentModel.TypeConverter (1)
System\ComponentModel\ReflectPropertyDescriptor.cs (1)
368public override bool IsReadOnly => SetMethodValue == null || ((ReadOnlyAttribute)Attributes[typeof(ReadOnlyAttribute)]!).IsReadOnly;