6 writes to Path
System.Net.HttpListener (2)
src\libraries\Common\src\System\Net\CookieParser.cs (2)
682
cookie!.
Path
= _tokenizer.Value;
802
cookie!.
Path
= _tokenizer.Value;
System.Net.Primitives (4)
src\libraries\Common\src\System\Net\CookieParser.cs (2)
682
cookie!.
Path
= _tokenizer.Value;
802
cookie!.
Path
= _tokenizer.Value;
System\Net\Cookie.cs (2)
111
Path
= path;
287
clonedCookie.
Path
= m_path;
16 references to Path
System.Net.HttpListener (2)
src\libraries\Common\src\System\Net\CookieComparer.cs (2)
22
return string.Equals(left.
Path
, right.
Path
, StringComparison.Ordinal);
System.Net.Primitives (14)
src\libraries\Common\src\System\Net\CookieComparer.cs (2)
22
return string.Equals(left.
Path
, right.
Path
, StringComparison.Ordinal);
System\Net\Cookie.cs (9)
385
if (
Path
!= null && !(
Path
.Length > 2 &&
Path
.StartsWith('\"') &&
Path
.EndsWith('\"'))
386
&& (
Path
.AsSpan().ContainsAny(';', ',')))
390
throw new CookieException(SR.Format(SR.net_cookie_attribute, CookieFields.PathAttributeName,
Path
));
705
&& string.Equals(
Path
, other.
Path
, StringComparison.Ordinal)
715
StringComparer.Ordinal.GetHashCode(
Path
),
System\Net\CookieContainer.cs (3)
248
uriSb.Append(cookie.
Path
);
290
cookies = (CookieCollection?)pathList[cookie.
Path
]!;
295
pathList[cookie.
Path
] = cookies;