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