Implemented interface member:
property
IsSynchronized
System.Collections.ICollection.IsSynchronized
5 overrides of IsSynchronized
mscorlib (5)
system\collections\arraylist.cs (5)
827public override bool IsSynchronized { 1251public override bool IsSynchronized { 1684public override bool IsSynchronized { 1941public override bool IsSynchronized { 2315public override bool IsSynchronized {
15 references to IsSynchronized
mscorlib (5)
system\collections\arraylist.cs (3)
1685get { return _list.IsSynchronized; } 1942get { return _list.IsSynchronized; } 2316get { return _baseList.IsSynchronized; }
system\collections\collectionbase.cs (1)
92get { return InnerList.IsSynchronized; }
system\collections\readonlycollectionbase.cs (1)
34get { return InnerList.IsSynchronized; }
PresentationFramework (2)
src\Framework\System\Windows\Data\CompositeCollection.cs (1)
349return InternalList.IsSynchronized;
src\Framework\System\Windows\WindowCollection.cs (1)
129return _list.IsSynchronized;
System.Drawing (1)
misc\ClientUtils.cs (1)
435bool ICollection.IsSynchronized { get { return InnerList.IsSynchronized; } }
System.Security (3)
system\security\cryptography\xml\c14nutil.cs (1)
657get { return m_nodeArray.IsSynchronized; }
system\security\cryptography\xml\encryptedkey.cs (1)
319get { return m_references.IsSynchronized; }
system\security\cryptography\xml\encryptedtype.cs (1)
407get { return m_props.IsSynchronized; }
System.Web (2)
SiteMapNodeCollection.cs (1)
72return List.IsSynchronized;
UI\WebControls\ListItemCollection.cs (1)
266get { return listItems.IsSynchronized; }
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Layout\ArrangedElementCollection.cs (1)
144bool ICollection.IsSynchronized { get { return InnerList.IsSynchronized; }}
winforms\Managed\System\WinForms\TableLayoutStyleCollection.cs (1)
119bool ICollection.IsSynchronized { get{ return _innerList.IsSynchronized; }}