4 writes to m_path
System (4)
net\System\Net\cookie.cs (4)
272m_path = (value == null? String.Empty : value); 502m_path = path; 505m_path = path.Substring(0, path.LastIndexOf('/')); //may be empty 510m_path = path.Substring(0, path.LastIndexOf('/')+1);
9 references to m_path
System (9)
net\System\Net\cookie.cs (9)
269return m_path; 279return (Plain || m_path_implicit || (m_path.Length == 0)) 284+ m_path 305clonedCookie.Path = m_path; 517if (!path.StartsWith(CookieParser.CheckQuoted(m_path))) { 519throw new CookieException(SR.GetString(SR.net_cookie_attribute, PathAttributeName, m_path)); 800if (!m_path_implicit && m_path!=null && m_path.Length>0) { 801result += SeparatorLiteral + PathAttributeName + EqualsLiteral + m_path;