12 references to SeparatorLiteral
System.Net.Primitives (12)
System\Net\Cookie.cs (12)
661sb.Append(SeparatorLiteral); 672sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.PathAttributeName + EqualsLiteral); // const strings 679sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.DomainAttributeName + EqualsLiteral); // const strings 689sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.PortAttributeName); // const strings 711result += SeparatorLiteral + CookieFields.CommentAttributeName + EqualsLiteral + m_comment; 715result += SeparatorLiteral + CookieFields.CommentUrlAttributeName + EqualsLiteral + QuotesLiteral + m_commentUri.ToString() + QuotesLiteral; 719result += SeparatorLiteral + CookieFields.DiscardAttributeName; 723result += SeparatorLiteral + CookieFields.DomainAttributeName + EqualsLiteral + m_domain; 734result += SeparatorLiteral + CookieFields.MaxAgeAttributeName + EqualsLiteral + seconds.ToString(NumberFormatInfo.InvariantInfo); 738result += SeparatorLiteral + CookieFields.PathAttributeName + EqualsLiteral + m_path; 743result += SeparatorLiteral + CookieFields.PortAttributeName + EqualsLiteral + m_port; 747result += SeparatorLiteral + CookieFields.VersionAttributeName + EqualsLiteral + m_version.ToString(NumberFormatInfo.InvariantInfo);