14 references to EqualsLiteral
System.Net.Primitives (14)
System\Net\Cookie.cs (13)
657sb.Append(SpecialAttributeLiteral + CookieFields.VersionAttributeName + EqualsLiteral); // const strings 665sb.Append(Name).Append(EqualsLiteral).Append(Value); 672sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.PathAttributeName + EqualsLiteral); // const strings 679sb.Append(SeparatorLiteral + SpecialAttributeLiteral + CookieFields.DomainAttributeName + EqualsLiteral); // const strings 692sb.Append(EqualsLiteral); 708string result = Name + EqualsLiteral + Value; 711result += SeparatorLiteral + CookieFields.CommentAttributeName + EqualsLiteral + m_comment; 715result += SeparatorLiteral + CookieFields.CommentUrlAttributeName + EqualsLiteral + QuotesLiteral + m_commentUri.ToString() + QuotesLiteral; 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);
System\Net\CookieContainer.cs (1)
855Cookie.EqualsLiteral +