1 write to m_value
System.Net.Primitives (1)
System\Net\Cookie.cs (1)
660
m_value
= value ?? string.Empty;
8 references to m_value
System.Net.Primitives (8)
System\Net\Cookie.cs (8)
278
Cookie clonedCookie = new Cookie(m_name,
m_value
);
363
if (
m_value
== null ||
364
(!(
m_value
.Length > 2 &&
m_value
.StartsWith('\"') &&
m_value
.EndsWith('\"')) &&
m_value
.AsSpan().ContainsAny(';', ',')))
368
throw new CookieException(SR.Format(SR.net_cookie_attribute, "Value",
m_value
?? "<null>"));
656
return
m_value
;