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