12 references to SeparatorLiteral
System.Net.Primitives (12)
System\Net\Cookie.cs (12)
738sb.Append(SeparatorLiteral); 749sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.PathAttributeName + EqualsLiteral); // const strings 756sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.DomainAttributeName + EqualsLiteral); // const strings 766sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.PortAttributeName); // const strings 788result += SeparatorLiteral + CookieFields.CommentAttributeName + EqualsLiteral + m_comment; 792result += SeparatorLiteral + CookieFields.CommentUrlAttributeName + EqualsLiteral + QuotesLiteral + m_commentUri.ToString() + QuotesLiteral; 796result += SeparatorLiteral + CookieFields.DiscardAttributeName; 800result += SeparatorLiteral + CookieFields.DomainAttributeName + EqualsLiteral + m_domain; 811result += SeparatorLiteral + CookieFields.MaxAgeAttributeName + EqualsLiteral + seconds.ToString(NumberFormatInfo.InvariantInfo); 815result += SeparatorLiteral + CookieFields.PathAttributeName + EqualsLiteral + m_path; 820result += SeparatorLiteral + CookieFields.PortAttributeName + EqualsLiteral + m_port; 824result += SeparatorLiteral + CookieFields.VersionAttributeName + EqualsLiteral + m_version.ToString(NumberFormatInfo.InvariantInfo);