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))
780
result +=
SeparatorLiteral
+ CommentAttributeName + EqualsLiteral + m_comment;
783
result +=
SeparatorLiteral
+ CommentUrlAttributeName + EqualsLiteral + QuotesLiteral + m_commentUri.ToString() + QuotesLiteral;
786
result +=
SeparatorLiteral
+ DiscardAttributeName;
789
result +=
SeparatorLiteral
+ DomainAttributeName + EqualsLiteral + m_domain;
798
result +=
SeparatorLiteral
+ MaxAgeAttributeName + EqualsLiteral + seconds.ToString(NumberFormatInfo.InvariantInfo);
801
result +=
SeparatorLiteral
+ PathAttributeName + EqualsLiteral + m_path;
805
result +=
SeparatorLiteral
+ PortAttributeName + EqualsLiteral + m_port;
808
result +=
SeparatorLiteral
+ VersionAttributeName + EqualsLiteral + m_version.ToString(NumberFormatInfo.InvariantInfo);