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

◆ GetAllCookies()

CookieCollection System.Net.CookieContainer.GetAllCookies ( )
inline

Definition at line 598 of file CookieContainer.cs.

599 {
600 CookieCollection cookieCollection = new CookieCollection();
602 {
604 while (enumerator.MoveNext())
605 {
606 PathList pathList = (PathList)enumerator.Value;
608 {
610 while (enumerator2.MoveNext())
611 {
612 cookieCollection.Add((CookieCollection)enumerator2.Value);
613 }
614 }
615 }
616 return cookieCollection;
617 }
618 }
void Add(TKey key, TValue value)
IEnumerator IEnumerable. GetEnumerator()
Definition Hashtable.cs:899
readonly Hashtable m_domainTable

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