14 references to EqualsLiteral
System.Net.Primitives (14)
System\Net\Cookie.cs (13)
734
sb.Append(SpecialAttributeLiteral + CookieFields.VersionAttributeName +
EqualsLiteral
); // const strings
742
sb.Append(Name).Append(
EqualsLiteral
).Append(Value);
749
sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.PathAttributeName +
EqualsLiteral
); // const strings
756
sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.DomainAttributeName +
EqualsLiteral
); // const strings
769
sb.Append(
EqualsLiteral
);
785
string result = Name +
EqualsLiteral
+ Value;
788
result += SeparatorLiteral + CookieFields.CommentAttributeName +
EqualsLiteral
+ m_comment;
792
result += SeparatorLiteral + CookieFields.CommentUrlAttributeName +
EqualsLiteral
+ QuotesLiteral + m_commentUri.ToString() + QuotesLiteral;
800
result += SeparatorLiteral + CookieFields.DomainAttributeName +
EqualsLiteral
+ m_domain;
811
result += SeparatorLiteral + CookieFields.MaxAgeAttributeName +
EqualsLiteral
+ seconds.ToString(NumberFormatInfo.InvariantInfo);
815
result += SeparatorLiteral + CookieFields.PathAttributeName +
EqualsLiteral
+ m_path;
820
result += SeparatorLiteral + CookieFields.PortAttributeName +
EqualsLiteral
+ m_port;
824
result += SeparatorLiteral + CookieFields.VersionAttributeName +
EqualsLiteral
+ m_version.ToString(NumberFormatInfo.InvariantInfo);
System\Net\CookieContainer.cs (1)
1017
Cookie.
EqualsLiteral
+