Implemented interface member:
property
IsReadOnly
System.Collections.IList.IsReadOnly
5 overrides of IsReadOnly
mscorlib (5)
system\collections\arraylist.cs (5)
818public override bool IsReadOnly { 1242public override bool IsReadOnly { 1676public override bool IsReadOnly { 1933public override bool IsReadOnly { 2307public override bool IsReadOnly {
16 references to IsReadOnly
mscorlib (4)
system\collections\arraylist.cs (3)
1243get { return _list.IsReadOnly; } 1677get { return _list.IsReadOnly; } 2308get { return _baseList.IsReadOnly; }
system\collections\collectionbase.cs (1)
84get { return InnerList.IsReadOnly; }
PresentationFramework (1)
src\Framework\System\Windows\Data\CompositeCollection.cs (1)
389return InternalList.IsReadOnly;
System.Drawing (1)
misc\ClientUtils.cs (1)
433public bool IsReadOnly { get { return InnerList.IsReadOnly; } }
System.Security (3)
system\security\cryptography\xml\c14nutil.cs (1)
636get { return m_nodeArray.IsReadOnly; }
system\security\cryptography\xml\encryptedkey.cs (1)
311get { return m_references.IsReadOnly; }
system\security\cryptography\xml\encryptedtype.cs (1)
365get { return m_props.IsReadOnly; }
System.Web (2)
UI\StateManagedCollection.cs (1)
582return _collectionItems.IsReadOnly;
UI\WebControls\ListItemCollection.cs (1)
257get { return listItems.IsReadOnly; }
System.Web.Mobile (1)
UI\MobileControls\ArrayListCollectionBase.cs (1)
74return Items.IsReadOnly;
System.Windows.Forms (4)
winforms\Managed\System\WinForms\Layout\ArrangedElementCollection.cs (1)
121public virtual bool IsReadOnly { get { return InnerList.IsReadOnly; }}
winforms\Managed\System\WinForms\TableLayoutStyleCollection.cs (1)
114bool IList.IsReadOnly { get {return _innerList.IsReadOnly;} }
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
1443bool IList.IsReadOnly { get { return InnerList.IsReadOnly; } }
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (1)
2154bool IList.IsReadOnly { get { return InnerList.IsReadOnly; } }