Implemented interface member:
property
IsSynchronized
System.Collections.ICollection.IsSynchronized
5 overrides of IsSynchronized
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (5)
733public override bool IsSynchronized => _list.IsSynchronized; 1182public override bool IsSynchronized => true; 1675public override bool IsSynchronized => _list.IsSynchronized; 1933public override bool IsSynchronized => _list.IsSynchronized; 2321public override bool IsSynchronized => _baseList.IsSynchronized;
10 references to IsSynchronized
PresentationFramework (2)
System\Windows\Data\CompositeCollection.cs (1)
332return InternalList.IsSynchronized;
System\Windows\WindowCollection.cs (1)
122return _list.IsSynchronized;
System.Collections.NonGeneric (2)
System\Collections\CollectionBase.cs (1)
102get { return InnerList.IsSynchronized; }
System\Collections\ReadOnlyCollectionBase.cs (1)
30get { return InnerList.IsSynchronized; }
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (3)
1675public override bool IsSynchronized => _list.IsSynchronized; 1933public override bool IsSynchronized => _list.IsSynchronized; 2321public override bool IsSynchronized => _baseList.IsSynchronized;
System.Security.Cryptography.Xml (3)
System\Security\Cryptography\Xml\CanonicalXmlNodeList.cs (1)
106get { return _nodeArray.IsSynchronized; }
System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs (1)
165get { return _props.IsSynchronized; }
System\Security\Cryptography\Xml\ReferenceList.cs (1)
131get { return _references.IsSynchronized; }