12 references to SeparatorLiteral
System (12)
net\System\Net\cookie.cs (12)
765((version.Length == 0)? string.Empty : (version + SeparatorLiteral)) 767+ ((path.Length == 0) ? string.Empty : (SeparatorLiteral + path)) 768+ ((domain.Length == 0) ? string.Empty : (SeparatorLiteral + domain)) 769+ ((port.Length == 0) ? string.Empty : (SeparatorLiteral + port)) 780result += SeparatorLiteral + CommentAttributeName + EqualsLiteral + m_comment; 783result += SeparatorLiteral + CommentUrlAttributeName + EqualsLiteral + QuotesLiteral + m_commentUri.ToString() + QuotesLiteral; 786result += SeparatorLiteral + DiscardAttributeName; 789result += SeparatorLiteral + DomainAttributeName + EqualsLiteral + m_domain; 798result += SeparatorLiteral + MaxAgeAttributeName + EqualsLiteral + seconds.ToString(NumberFormatInfo.InvariantInfo); 801result += SeparatorLiteral + PathAttributeName + EqualsLiteral + m_path; 805result += SeparatorLiteral + PortAttributeName + EqualsLiteral + m_port; 808result += SeparatorLiteral + VersionAttributeName + EqualsLiteral + m_version.ToString(NumberFormatInfo.InvariantInfo);