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

◆ this[string name]

Cookie? System.Net.CookieCollection.this[string name]
get

Definition at line 40 of file CookieCollection.cs.

41 {
42 get
43 {
44 foreach (Cookie item in m_list)
45 {
46 if (string.Equals(item.Name, name, StringComparison.OrdinalIgnoreCase))
47 {
48 return item;
49 }
50 }
51 return null;
52 }
53 }