Implemented interface member:
property
IsReadOnly
System.Collections.IList.IsReadOnly
5 overrides of IsReadOnly
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (5)
728public override bool IsReadOnly => _list.IsReadOnly; 1177public override bool IsReadOnly => _list.IsReadOnly; 1671public override bool IsReadOnly => _list.IsReadOnly; 1929public override bool IsReadOnly => true; 2317public override bool IsReadOnly => _baseList.IsReadOnly;
8 references to IsReadOnly
PresentationFramework (1)
System\Windows\Data\CompositeCollection.cs (1)
372return InternalList.IsReadOnly;
System.Collections.NonGeneric (1)
System\Collections\CollectionBase.cs (1)
92get { return InnerList.IsReadOnly; }
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (3)
1177public override bool IsReadOnly => _list.IsReadOnly; 1671public override bool IsReadOnly => _list.IsReadOnly; 2317public override bool IsReadOnly => _baseList.IsReadOnly;
System.Security.Cryptography.Xml (3)
System\Security\Cryptography\Xml\CanonicalXmlNodeList.cs (1)
80get { return _nodeArray.IsReadOnly; }
System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs (1)
114get { return _props.IsReadOnly; }
System\Security\Cryptography\Xml\ReferenceList.cs (1)
121get { return _references.IsReadOnly; }