1 write to IsReadOnly
System.ComponentModel.Primitives (1)
System\ComponentModel\ReadOnlyAttribute.cs (1)
39
public 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)
48
value is ReadOnlyAttribute other && other.
IsReadOnly
==
IsReadOnly
;
52
public override bool IsDefaultAttribute() =>
IsReadOnly
== Default.
IsReadOnly
;
System.ComponentModel.TypeConverter (1)
System\ComponentModel\ReflectPropertyDescriptor.cs (1)
368
public override bool IsReadOnly => SetMethodValue == null || ((ReadOnlyAttribute)Attributes[typeof(ReadOnlyAttribute)]!).
IsReadOnly
;