System.Net.CookieContainer.Dump C# (CSharp) Method

Dump() private method

private Dump ( ) : void
return void
        internal void Dump() {
            GlobalLog.Print("CookieContainer:");
            foreach (DictionaryEntry de in m_domainTable) {
                GlobalLog.Print("domain = \"" + de.Key + "\"");
                ((PathList)de.Value).Dump();
            }
        }
#endif