11 references to IsReadOnly
System (5)
compmod\system\componentmodel\ReadOnlyAttribute.cs (4)
80return other != null && other.IsReadOnly == IsReadOnly; 99return (this.IsReadOnly == Default.IsReadOnly);
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (1)
390return SetMethodValue == null || ((ReadOnlyAttribute)Attributes[typeof(ReadOnlyAttribute)]).IsReadOnly;
System.ComponentModel.DataAnnotations (1)
DataAnnotations\MetadataPropertyDescriptorWrapper.cs (1)
16_isReadOnly = (readOnlyAttribute != null ? readOnlyAttribute.IsReadOnly : false);
System.Web (2)
ModelBinding\DataAnnotationsModelMetadataProvider.cs (1)
45result.IsReadOnly = readOnlyAttribute.IsReadOnly;
Profile\HttpProfileBase.cs (1)
435readOnly = ((System.ComponentModel.ReadOnlyAttribute)attrib).IsReadOnly;
System.Web.DynamicData (2)
DynamicData\MetaColumn.cs (1)
562IsReadOnly = Attributes.GetAttributePropertyValue<ReadOnlyAttribute, bool>(a => a.IsReadOnly, false);
DynamicData\MetaTable.cs (1)
1024return _readOnlyAttribute.GetPropertyValue(a => a.IsReadOnly, false);
WindowsBase (1)
Base\MS\Internal\ComponentModel\DependencyObjectPropertyDescriptor.cs (1)
694readOnly = roAttr.IsReadOnly;