2 writes to m_domain
System (2)
net\System\Net\cookie.cs (2)
188
m_domain
= (value == null? String.Empty : value);
409
m_domain
= host;
11 references to m_domain
System (11)
net\System\Net\cookie.cs (11)
185
return
m_domain
;
196
return (Plain || m_domain_implicit || (
m_domain
.Length == 0))
201
+
m_domain
+ (IsQuotedDomain? "\"": string.Empty)
307
clonedCookie.Domain =
m_domain
;
419
string domain =
m_domain
;
433
throw new CookieException(SR.GetString(SR.net_cookie_attribute, DomainAttributeName,
m_domain
));
482
if (string.Compare(host,
m_domain
, StringComparison.OrdinalIgnoreCase) != 0) {
489
throw new CookieException(SR.GetString(SR.net_cookie_attribute, DomainAttributeName,
m_domain
));
788
if (!m_domain_implicit &&
m_domain
!=null &&
m_domain
.Length>0) {
789
result += SeparatorLiteral + DomainAttributeName + EqualsLiteral +
m_domain
;