2 writes to m_port
System.Net.Primitives (2)
System\Net\Cookie.cs (2)
507
m_port
= string.Empty;
537
m_port
= value;
9 references to m_port
System.Net.Primitives (9)
System\Net\Cookie.cs (9)
282
clonedCookie.Port =
m_port
;
463
if (m_port_implicit == false &&
m_port
.Length == 0)
482
throw new CookieException(SR.Format(SR.net_cookie_attribute, CookieFields.PortAttributeName,
m_port
));
498
return
m_port
;
690
if (
m_port
.Length > 0)
693
sb.Append(
m_port
);
740
if (!Plain && !m_port_implicit &&
m_port
!= null &&
m_port
.Length > 0)
743
result += SeparatorLiteral + CookieFields.PortAttributeName + EqualsLiteral +
m_port
;