Implemented interface member:
property
IsFixedSize
System.Collections.IList.IsFixedSize
5 overrides of IsFixedSize
mscorlib (5)
system\collections\arraylist.cs (5)
822public override bool IsFixedSize { 1246public override bool IsFixedSize { 1680public override bool IsFixedSize { 1937public override bool IsFixedSize { 2311public override bool IsFixedSize {
13 references to IsFixedSize
mscorlib (3)
system\collections\arraylist.cs (2)
1247get { return _list.IsFixedSize; } 2312get { return _baseList.IsFixedSize; }
system\collections\collectionbase.cs (1)
88get { return InnerList.IsFixedSize; }
PresentationFramework (1)
src\Framework\System\Windows\Data\CompositeCollection.cs (1)
375return InternalList.IsFixedSize;
System.Drawing (1)
misc\ClientUtils.cs (1)
415public bool IsFixedSize { get { return InnerList.IsFixedSize; } }
System.Security (3)
system\security\cryptography\xml\c14nutil.cs (1)
632get { return m_nodeArray.IsFixedSize; }
system\security\cryptography\xml\encryptedkey.cs (1)
307get { return m_references.IsFixedSize; }
system\security\cryptography\xml\encryptedtype.cs (1)
361get { return m_props.IsFixedSize; }
System.Windows.Forms (5)
winforms\Managed\System\WinForms\Layout\ArrangedElementCollection.cs (1)
118bool IList.IsFixedSize { get { return InnerList.IsFixedSize; }}
winforms\Managed\System\WinForms\TableLayoutStyleCollection.cs (1)
113bool IList.IsFixedSize { get {return _innerList.IsFixedSize;} }
winforms\Managed\System\WinForms\ToolStripItemCollection.cs (1)
341bool IList.IsFixedSize { get { return InnerList.IsFixedSize; }}
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
1441bool IList.IsFixedSize { get { return InnerList.IsFixedSize; } }
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (1)
2150bool IList.IsFixedSize { get { return InnerList.IsFixedSize; } }