1 write to m_value
System.Net.Primitives (1)
System\Net\Cookie.cs (1)
583m_value = value ?? string.Empty;
8 references to m_value
System.Net.Primitives (8)
System\Net\Cookie.cs (8)
277Cookie clonedCookie = new Cookie(m_name, m_value); 387if (m_value == null || 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;