1 write to items
System.IdentityModel (1)
System\IdentityModel\Tokens\MruSessionSecurityTokenCache.cs (1)
102this.items = new Dictionary<SessionSecurityTokenCacheKey, CacheEntry>(maximumSize, comparer);
11 references to items
System.IdentityModel (11)
System\IdentityModel\Tokens\MruSessionSecurityTokenCache.cs (11)
132if (this.items.TryGetValue(key, out entry)) 134this.items.Remove(key); 167this.items.Add(key, entry); 197found = this.items.TryGetValue(key, out entry); 232foreach (SessionSecurityTokenCacheKey itemKey in this.items.Keys) 236entriesToDelete.Add(itemKey, this.items[itemKey]); 242this.items.Remove(itemKey); 284foreach (SessionSecurityTokenCacheKey itemKey in this.items.Keys) 288entry = this.items[itemKey]; 312if (this.items.Count >= this.maximumSize) 321this.items.Remove(keyRemove);