5 writes to Path
System (4)
net\System\Net\cookie.cs (4)
117
Path
= path;
305
clonedCookie.
Path
= m_path;
1439
cookie.
Path
= m_tokenizer.Value;
1548
cookie.
Path
= m_tokenizer.Value;
System.Web (1)
WebSockets\AspNetWebSocketContextImpl.cs (1)
80
Path
= cookie.Path,
15 references to Path
System (15)
net\System\Net\cookie.cs (12)
398
if (
Path
!= null && !(
Path
.Length > 2 &&
Path
[0] == '\"' &&
Path
[
Path
.Length-1] == '\"')
399
&& (
Path
.IndexOfAny(Reserved2Value) != -1)) {
401
throw new CookieException(SR.GetString(SR.net_cookie_attribute, PathAttributeName,
Path
));
733
&& (string.Compare(
Path
, other.
Path
, StringComparison.Ordinal) == 0)
751
return (Name + "=" + Value + ";" +
Path
+ "; " + Domain + "; " + Version).GetHashCode();
1638
if ((result = string.Compare(left.
Path
, right.
Path
, StringComparison.Ordinal)) != 0) {
net\System\Net\cookiecontainer.cs (3)
257
uriSb.Append(cookie.
Path
);
312
cookies = (CookieCollection)pathList[cookie.
Path
];
317
pathList[cookie.
Path
] = cookies;