14 references to EqualsLiteral
System.Net.Primitives (14)
System\Net\Cookie.cs (13)
734sb.Append(SpecialAttributeLiteral + CookieFields.VersionAttributeName + EqualsLiteral); // const strings 742sb.Append(Name).Append(EqualsLiteral).Append(Value); 749sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.PathAttributeName + EqualsLiteral); // const strings 756sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.DomainAttributeName + EqualsLiteral); // const strings 769sb.Append(EqualsLiteral); 785string result = Name + EqualsLiteral + Value; 788result += SeparatorLiteral + CookieFields.CommentAttributeName + EqualsLiteral + m_comment; 792result += SeparatorLiteral + CookieFields.CommentUrlAttributeName + EqualsLiteral + QuotesLiteral + m_commentUri.ToString() + QuotesLiteral; 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);
System\Net\CookieContainer.cs (1)
1017Cookie.EqualsLiteral +