Implemented interface member:
property
IsSynchronized
System.Collections.ICollection.IsSynchronized
1 override of IsSynchronized
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (1)
1270public override bool IsSynchronized => true;
5 references to IsSynchronized
PresentationFramework (1)
System\Windows\ResourceDictionary.cs (1)
911get { return _baseDictionary.IsSynchronized; }
System.Collections.NonGeneric (1)
System\Collections\DictionaryBase.cs (1)
46get { return InnerHashtable.IsSynchronized; }
System.Collections.Specialized (1)
System\Collections\Specialized\StringDictionary.cs (1)
58return contents.IsSynchronized;
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (2)
1206public bool IsSynchronized => _hashtable.IsSynchronized; 1241public bool IsSynchronized => _hashtable.IsSynchronized;