Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ DomainTableCleanup()

void System.Net.CookieContainer.DomainTableCleanup ( )
inlineprivate

Definition at line 355 of file CookieContainer.cs.

356 {
360 {
362 while (enumerator.MoveNext())
363 {
364 string item = (string)enumerator.Key;
365 PathList pathList = (PathList)enumerator.Value;
367 {
369 while (enumerator2.MoveNext())
370 {
371 CookieCollection cookieCollection = (CookieCollection)enumerator2.Value;
372 if (cookieCollection.Count == 0)
373 {
374 list.Add(enumerator2.Key);
375 }
376 }
377 foreach (object item2 in list)
378 {
380 }
381 list.Clear();
382 if (pathList.Count == 0)
383 {
384 list2.Add(item);
385 }
386 }
387 }
388 foreach (string item3 in list2)
389 {
391 }
392 }
393 }
bool ICollection< KeyValuePair< TKey, TValue > >. Remove(KeyValuePair< TKey, TValue > keyValuePair)
void Add(TKey key, TValue value)
IEnumerator IEnumerable. GetEnumerator()
Definition Hashtable.cs:899
virtual void Remove(object key)
readonly Hashtable m_domainTable

References System.Collections.Generic.Dictionary< TKey, TValue >.Add(), System.Collections.Generic.Dictionary< TKey, TValue >.Count, System.Collections.Generic.Dictionary< TKey, TValue >.GetEnumerator(), System.Collections.Hashtable.GetEnumerator(), System.item, System.list, System.Net.CookieContainer.m_domainTable, System.Collections.Generic.Dictionary< TKey, TValue >.Remove(), System.Collections.Hashtable.Remove(), System.Collections.Generic.Dictionary< TKey, TValue >.SyncRoot, and System.Collections.Hashtable.SyncRoot.

Referenced by System.Net.CookieContainer.Add().