14 references to EqualsLiteral
System.Net.Primitives (14)
System\Net\Cookie.cs (13)
657
sb.Append(SpecialAttributeLiteral + CookieFields.VersionAttributeName +
EqualsLiteral
); // const strings
665
sb.Append(Name).Append(
EqualsLiteral
).Append(Value);
672
sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.PathAttributeName +
EqualsLiteral
); // const strings
679
sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.DomainAttributeName +
EqualsLiteral
); // const strings
692
sb.Append(
EqualsLiteral
);
708
string result = Name +
EqualsLiteral
+ Value;
711
result += SeparatorLiteral + CookieFields.CommentAttributeName +
EqualsLiteral
+ m_comment;
715
result += SeparatorLiteral + CookieFields.CommentUrlAttributeName +
EqualsLiteral
+ QuotesLiteral + m_commentUri.ToString() + QuotesLiteral;
723
result += SeparatorLiteral + CookieFields.DomainAttributeName +
EqualsLiteral
+ m_domain;
734
result += SeparatorLiteral + CookieFields.MaxAgeAttributeName +
EqualsLiteral
+ seconds.ToString(NumberFormatInfo.InvariantInfo);
738
result += SeparatorLiteral + CookieFields.PathAttributeName +
EqualsLiteral
+ m_path;
743
result += SeparatorLiteral + CookieFields.PortAttributeName +
EqualsLiteral
+ m_port;
747
result += SeparatorLiteral + CookieFields.VersionAttributeName +
EqualsLiteral
+ m_version.ToString(NumberFormatInfo.InvariantInfo);
System\Net\CookieContainer.cs (1)
855
Cookie.
EqualsLiteral
+