Implemented interface member:
property
IsFixedSize
System.Collections.IList.IsFixedSize
5 overrides of IsFixedSize
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (5)
730public override bool IsFixedSize => _list.IsFixedSize; 1179public override bool IsFixedSize => _list.IsFixedSize; 1673public override bool IsFixedSize => true; 1931public override bool IsFixedSize => true; 2319public override bool IsFixedSize => _baseList.IsFixedSize;
7 references to IsFixedSize
PresentationFramework (1)
System\Windows\Data\CompositeCollection.cs (1)
358return InternalList.IsFixedSize;
System.Collections.NonGeneric (1)
System\Collections\CollectionBase.cs (1)
97get { return InnerList.IsFixedSize; }
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (2)
1179public override bool IsFixedSize => _list.IsFixedSize; 2319public override bool IsFixedSize => _baseList.IsFixedSize;
System.Security.Cryptography.Xml (3)
System\Security\Cryptography\Xml\CanonicalXmlNodeList.cs (1)
75get { return _nodeArray.IsFixedSize; }
System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs (1)
109get { return _props.IsFixedSize; }
System\Security\Cryptography\Xml\ReferenceList.cs (1)
116get { return _references.IsFixedSize; }