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