5 writes to m_path
System.Net.Primitives (5)
System\Net\Cookie.cs (5)
263
m_path
= value ?? string.Empty;
514
m_path
= "/";
520
m_path
= path.Substring(0, lastSlash);
523
m_path
= path.Substring(0, path.LastIndexOf('/')); // May be empty
529
m_path
= path.Substring(0, path.LastIndexOf('/') + 1);
7 references to m_path
System.Net.Primitives (7)
System\Net\Cookie.cs (7)
259
return
m_path
;
287
clonedCookie.Path =
m_path
;
747
if (!m_path_implicit &&
m_path
.Length > 0)
750
sb.Append(
m_path
);
813
if (!m_path_implicit &&
m_path
!= null &&
m_path
.Length > 0)
815
result += SeparatorLiteral + CookieFields.PathAttributeName + EqualsLiteral +
m_path
;