1 write to _hashtable
System.Web (1)
Util\SimpleRecyclingCache.cs (1)
33
_hashtable
= new Hashtable(MAX_SIZE, StringComparer.OrdinalIgnoreCase);
4 references to _hashtable
System.Web (4)
Util\SimpleRecyclingCache.cs (4)
38
return
_hashtable
[key];
43
if (
_hashtable
.Count >= MAX_SIZE)
44
_hashtable
.Clear();
46
_hashtable
[key] = value;