2 writes to m_domain
System (2)
net\System\Net\cookie.cs (2)
188m_domain = (value == null? String.Empty : value); 409m_domain = host;
11 references to m_domain
System (11)
net\System\Net\cookie.cs (11)
185return m_domain; 196return (Plain || m_domain_implicit || (m_domain.Length == 0)) 201+ m_domain + (IsQuotedDomain? "\"": string.Empty) 307clonedCookie.Domain = m_domain; 419string domain = m_domain; 433throw new CookieException(SR.GetString(SR.net_cookie_attribute, DomainAttributeName, m_domain)); 482if (string.Compare(host, m_domain, StringComparison.OrdinalIgnoreCase) != 0) { 489throw new CookieException(SR.GetString(SR.net_cookie_attribute, DomainAttributeName, m_domain)); 788if (!m_domain_implicit && m_domain!=null && m_domain.Length>0) { 789result += SeparatorLiteral + DomainAttributeName + EqualsLiteral + m_domain;