1 write to m_value
System.Net.Primitives (1)
System\Net\Cookie.cs (1)
583m_value = value ?? string.Empty;
9 references to m_value
System.Net.Primitives (9)
System\Net\Cookie.cs (9)
277Cookie clonedCookie = new Cookie(m_name, m_value); 387if (m_value == null || m_value.ContainsAny('\r', '\n', '\0') || 388(!(m_value.Length > 2 && m_value.StartsWith('\"') && m_value.EndsWith('\"')) && m_value.AsSpan().ContainsAny(';', ','))) 390throw new CookieException(SR.Format(SR.net_cookie_attribute, "Value", m_value ?? "<null>")); 579return m_value;