11 references to Concat
Microsoft.AspNetCore.Http (1)
Internal\ResponseCookies.cs (1)
96
cookies[position] = string.
Concat
(keyValuePair.Key, "=", Uri.EscapeDataString(keyValuePair.Value), cookieSuffix);
System.Net.HttpListener (1)
System\Net\ServiceNameStore.cs (1)
110
string normalizedServiceName = string.
Concat
(prefix, normalizedHost, port, distinguisher);
System.Net.Security (1)
System\Security\Authentication\ExtendedProtection\ServiceNameCollection.cs (1)
253
string normalizedServiceName = string.
Concat
(prefix, normalizedHost, port, distinguisher);
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.cs (1)
1017
englishDisplayName = string.
Concat
(
src\libraries\System.Private.CoreLib\src\System\Globalization\GlobalizationMode.cs (2)
86
string.
Concat
(baseName, suffix, extension, version) :
87
string.
Concat
(baseName, suffix, version, extension);
src\libraries\System.Private.CoreLib\src\System\IO\Path.cs (2)
724
(false, true) => string.
Concat
(first, PathInternal.DirectorySeparatorCharAsString, second, third),
725
(true, false) => string.
Concat
(first, second, PathInternal.DirectorySeparatorCharAsString, third),
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (1)
1540
string retVal =
Concat
(firstSegment, builder.AsSpan(), replacementText, remaining);
System.Private.Uri (2)
System\Uri.cs (2)
4755
return string.
Concat
(@"\\", basePart.GetParts(UriComponents.Host, UriFormat.Unescaped), share, relativePart);
4758
return string.
Concat
("file://", basePart.GetParts(UriComponents.Host, uriFormat), share, relativePart);