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

◆ Name

string System.Net.Cookie.Name
getset

Definition at line 170 of file Cookie.cs.

171 {
172 get
173 {
174 return m_name;
175 }
176 set
177 {
178 if (string.IsNullOrEmpty(value) || !InternalSetName(value))
179 {
180 throw new CookieException(System.SR.Format(System.SR.net_cookie_attribute, "Name", (value == null) ? "<null>" : value));
181 }
182 }
183 }
string m_name
Definition Cookie.cs:34
bool InternalSetName(string value)
Definition Cookie.cs:331
static string net_cookie_attribute
Definition SR.cs:36
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
Definition SR.cs:7

Referenced by System.Net.Cookie.Cookie(), System.Net.CookieComparer.Compare(), System.Net.Cookie.Equals(), System.Net.Cookie.GetHashCode(), System.Net.CookieParser.GetServer(), System.Net.HttpListenerRequest.ParseCookies(), System.Net.Cookie.ToServerString(), and System.Net.Cookie.ToString().