12 references to SeparatorLiteral
System.Net.Primitives (12)
System\Net\Cookie.cs (12)
738
sb.Append(
SeparatorLiteral
);
749
sb.Append(
SeparatorLiteral
+ SpecialAttributeLiteral + CookieFields.PathAttributeName + EqualsLiteral); // const strings
756
sb.Append(
SeparatorLiteral
+ SpecialAttributeLiteral + CookieFields.DomainAttributeName + EqualsLiteral); // const strings
766
sb.Append(
SeparatorLiteral
+ SpecialAttributeLiteral + CookieFields.PortAttributeName); // const strings
788
result +=
SeparatorLiteral
+ CookieFields.CommentAttributeName + EqualsLiteral + m_comment;
792
result +=
SeparatorLiteral
+ CookieFields.CommentUrlAttributeName + EqualsLiteral + QuotesLiteral + m_commentUri.ToString() + QuotesLiteral;
796
result +=
SeparatorLiteral
+ CookieFields.DiscardAttributeName;
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);