11 references to IsReadOnly
System (5)
compmod\system\componentmodel\ReadOnlyAttribute.cs (4)
80
return other != null && other.
IsReadOnly
==
IsReadOnly
;
99
return (this.
IsReadOnly
== Default.
IsReadOnly
);
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (1)
390
return 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)
45
result.IsReadOnly = readOnlyAttribute.
IsReadOnly
;
Profile\HttpProfileBase.cs (1)
435
readOnly = ((System.ComponentModel.ReadOnlyAttribute)attrib).
IsReadOnly
;
System.Web.DynamicData (2)
DynamicData\MetaColumn.cs (1)
562
IsReadOnly = Attributes.GetAttributePropertyValue<ReadOnlyAttribute, bool>(a => a.
IsReadOnly
, false);
DynamicData\MetaTable.cs (1)
1024
return _readOnlyAttribute.GetPropertyValue(a => a.
IsReadOnly
, false);
WindowsBase (1)
Base\MS\Internal\ComponentModel\DependencyObjectPropertyDescriptor.cs (1)
694
readOnly = roAttr.
IsReadOnly
;