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

◆ this[int index]

Cookie System.Net.CookieCollection.this[int index]
get

Definition at line 28 of file CookieCollection.cs.

29 {
30 get
31 {
33 {
34 throw new ArgumentOutOfRangeException("index");
35 }
36 return m_list[index] as Cookie;
37 }
38 }