5 writes to m_path
System.Net.Primitives (5)
System\Net\Cookie.cs (5)
262
m_path
= value ?? string.Empty;
442
m_path
= "/";
448
m_path
= path.Substring(0, lastSlash);
451
m_path
= path.Substring(0, path.LastIndexOf('/')); // May be empty
457
m_path
= path.Substring(0, path.LastIndexOf('/') + 1);
7 references to m_path
System.Net.Primitives (7)
System\Net\Cookie.cs (7)
258
return
m_path
;
286
clonedCookie.Path =
m_path
;
670
if (!m_path_implicit &&
m_path
.Length > 0)
673
sb.Append(
m_path
);
736
if (!m_path_implicit &&
m_path
!= null &&
m_path
.Length > 0)
738
result += SeparatorLiteral + CookieFields.PathAttributeName + EqualsLiteral +
m_path
;