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