12 references to SeparatorLiteral
System.Net.Primitives (12)
System\Net\Cookie.cs (12)
661
sb.Append(
SeparatorLiteral
);
672
sb.Append(
SeparatorLiteral
+ SpecialAttributeLiteral + CookieFields.PathAttributeName + EqualsLiteral); // const strings
679
sb.Append(
SeparatorLiteral
+ SpecialAttributeLiteral + CookieFields.DomainAttributeName + EqualsLiteral); // const strings
689
sb.Append(
SeparatorLiteral
+ SpecialAttributeLiteral + CookieFields.PortAttributeName); // const strings
711
result +=
SeparatorLiteral
+ CookieFields.CommentAttributeName + EqualsLiteral + m_comment;
715
result +=
SeparatorLiteral
+ CookieFields.CommentUrlAttributeName + EqualsLiteral + QuotesLiteral + m_commentUri.ToString() + QuotesLiteral;
719
result +=
SeparatorLiteral
+ CookieFields.DiscardAttributeName;
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);