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