82 references to Join
Aspire.Dashboard (1)
Authentication\AspirePolicyEvaluator.cs (1)
68var ticket = new AuthenticationTicket(newPrincipal, string.Join(';', policy.AuthenticationSchemes));
Aspire.EndToEnd.Tests (1)
tests\testproject\Common\TestResourceNames.cs (1)
39return string.Join(',', Enum.GetValues<TestResourceNames>()
Aspire.Hosting (1)
Dashboard\DashboardLifecycleHook.cs (1)
354return string.Join(',', corsOrigins);
Aspire.Hosting.Garnet (1)
GarnetBuilderExtensions.cs (1)
165context.Args.Add(string.Join(' ', garnetCommand));
Aspire.Hosting.Redis (1)
RedisBuilderExtensions.cs (1)
124context.Args.Add(string.Join(' ', redisCommand));
Aspire.Hosting.Testing.Tests (1)
tests\testproject\Common\TestResourceNames.cs (1)
39return string.Join(',', Enum.GetValues<TestResourceNames>()
Aspire.Hosting.Valkey (1)
ValkeyBuilderExtensions.cs (1)
176context.Args.Add(string.Join(' ', valkeyCommand));
Aspire.Templates.Tests (2)
StarterTemplateRunTestsBase.cs (2)
105var firstLoadText = string.Join(',', (await GetAndValidateCellTexts(tableLoc)).SelectMany(r => r)); 110var secondLoadText = string.Join(',', (await GetAndValidateCellTexts(tableLoc)).SelectMany(r => r));
BasicTestApp (2)
FormsTest\CustomFieldCssClassProvider.cs (1)
26cssClassName = string.Join(' ', cssClassName.Split(' ').Select(token => token switch
InteropTest\ByteArrayInterop.cs (1)
42return $"StrVal: {StrVal}, IntVal: {IntVal}, ByteArrayVal: {string.Join(',', ByteArrayVal)}";
CreateDefaultBuilderOfTApp (1)
Program.cs (1)
38var hosts = string.Join(',', hostFilteringOptions.Value.AllowedHosts);
GenerateDocumentationAndConfigFiles (1)
Program.cs (1)
494var allRuleIds = string.Join(';', allRulesById.Keys);
Microsoft.AspNetCore.App.UnitTests (31)
SharedFxTests.cs (16)
42_output.WriteLine(string.Join('\n', actualAssemblies.OrderBy(i => i))); 44_output.WriteLine(string.Join('\n', TestData.ListedSharedFxAssemblies.OrderBy(i => i))); 50_output.WriteLine(string.Join('\n', missing)); 52_output.WriteLine(string.Join('\n', unexpected)); 69_output.WriteLine(string.Join('\n', actualAssemblies.OrderBy(i => i))); 71_output.WriteLine(string.Join('\n', expectedAssemblies.OrderBy(i => i))); 77_output.WriteLine(string.Join('\n', missing)); 79_output.WriteLine(string.Join('\n', unexpected)); 272_output.WriteLine(string.Join('\n', runtimeListEntries.Select(i => i.Attribute("Path").Value).OrderBy(i => i))); 274_output.WriteLine(string.Join('\n', expectedAssemblies.OrderBy(i => i))); 292_output.WriteLine(string.Join('\n', missing)); 294_output.WriteLine(string.Join('\n', unexpected)); 339_output.WriteLine(string.Join('\n', actualPaths.OrderBy(i => i))); 341_output.WriteLine(string.Join('\n', expectedPaths.OrderBy(i => i))); 347_output.WriteLine(string.Join('\n', missing)); 349_output.WriteLine(string.Join('\n', unexpected));
TargetingPackTests.cs (15)
44_output.WriteLine(string.Join('\n', actualAssemblies.OrderBy(i => i))); 46_output.WriteLine(string.Join('\n', listedTargetingPackAssemblies.OrderBy(i => i))); 52_output.WriteLine(string.Join('\n', missing)); 54_output.WriteLine(string.Join('\n', unexpected)); 242_output.WriteLine(string.Join('\n', expectedAssemblies.OrderBy(i => i))); 269_output.WriteLine(string.Join('\n', missing)); 271_output.WriteLine(string.Join('\n', unexpected)); 319_output.WriteLine(string.Join('\n', actualElements.Select(i => i.Attribute("AssemblyName").Value).OrderBy(i => i))); 321_output.WriteLine(string.Join('\n', expectedAssemblyNames.OrderBy(i => i))); 337_output.WriteLine(string.Join('\n', missing)); 339_output.WriteLine(string.Join('\n', unexpected)); 382_output.WriteLine(string.Join('\n', actualPaths.OrderBy(i => i))); 384_output.WriteLine(string.Join('\n', expectedPaths.OrderBy(i => i))); 390_output.WriteLine(string.Join('\n', missing)); 392_output.WriteLine(string.Join('\n', unexpected));
Microsoft.AspNetCore.Authentication.Abstractions (1)
TokenExtensions.cs (1)
49properties.Items[TokenNamesKey] = string.Join(';', tokenNames);
Microsoft.AspNetCore.Authorization.Policy (1)
PolicyEvaluator.cs (1)
57var ticket = new AuthenticationTicket(newPrincipal, string.Join(';', policy.AuthenticationSchemes));
Microsoft.AspNetCore.Diagnostics (2)
src\Shared\Diagnostics\BaseView.cs (1)
121var attributes = string.Join(' ', AttributeValues);
src\Shared\RazorViews\BaseView.cs (1)
161var attributes = string.Join(' ', AttributeValues);
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (2)
src\Shared\Diagnostics\BaseView.cs (1)
121var attributes = string.Join(' ', AttributeValues);
src\Shared\RazorViews\BaseView.cs (1)
161var attributes = string.Join(' ', AttributeValues);
Microsoft.AspNetCore.Hosting (2)
GenericHost\GenericWebHostService.cs (1)
86return string.Join(';',
src\Shared\RazorViews\BaseView.cs (1)
161var attributes = string.Join(' ', AttributeValues);
Microsoft.AspNetCore.Hosting.Tests (1)
GenericWebHostBuilderTests.cs (1)
128Assert.Equal(expected, string.Join(';', server.Addresses));
Microsoft.AspNetCore.Http.Abstractions (2)
Internal\ParsingHelpers.cs (2)
60headers[key] = string.Join(',', value.Select(QuoteIfNeeded)); 119headers[key] = existing + "," + string.Join(',', values.Select(QuoteIfNeeded));
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\CompositeBindingSource.cs (1)
56var id = string.Join('&', bindingSources.Select(s => s.Id).OrderBy(s => s, StringComparer.Ordinal));
Microsoft.AspNetCore.Mvc.TagHelpers (1)
TagHelperOutputExtensions.cs (1)
248var joinedClasses = new HtmlString(string.Join(' ', listOfClasses));
Microsoft.AspNetCore.Routing (2)
HostAttribute.cs (1)
56: string.Join(',', Hosts.Select(h => h.Contains(':') ? h : h + ":*"));
RouteValuesAddress.cs (1)
33_toString ??= $"{RouteName}({string.Join(',', ExplicitValues.Select(kv => $"{kv.Key}=[{kv.Value}]"))})";
Microsoft.AspNetCore.Server.IIS (1)
src\Shared\RazorViews\BaseView.cs (1)
161var attributes = string.Join(' ', AttributeValues);
Microsoft.AspNetCore.TestHost (1)
ClientHandler.cs (1)
162req.Headers.Append(header.Key, string.Join(' ', header.Value));
Microsoft.CodeAnalysis.LanguageServer (1)
HostWorkspace\FileWatching\LspFileChangeWatcher.cs (1)
84_ => "{" + string.Join(',', d.ExtensionFilters) + "}"
Microsoft.ML.GenAI.Core (1)
Extension\TensorExtension.cs (1)
22var shapeString = string.Join(',', tensor.shape);
Microsoft.ML.Samples (11)
Dynamic\DataOperations\LoadingSvmLight.cs (1)
107Console.WriteLine($"{label} {weight} {string.Join(' ', features.DenseValues())}");
Dynamic\Trainers\AnomalyDetection\RandomizedPcaSample.cs (1)
57var featuresInText = string.Join(',', samples[i].Features);
Dynamic\Trainers\AnomalyDetection\RandomizedPcaSampleWithOptions.cs (1)
65var featuresInText = string.Join(',', samples[i].Features);
Dynamic\Transforms\Conversion\KeyToValueToKey.cs (2)
66Console.WriteLine($"{string.Join(',', dataRow.Keys)}"); 76Console.WriteLine($"{string.Join(',', dataRow.Keys)}");
Dynamic\Transforms\Conversion\MapKeyToBinaryVector.cs (1)
49$"{string.Join(',', featureRow.TimeframeVector)}");
Dynamic\Transforms\Conversion\MapKeyToVector.cs (3)
64string.Join(',', featureRow.TimeframeVector.Select(x => x)) + " " 65+ string.Join(',', featureRow.PartsCount.Select(x => x)) + 66" " + string.Join(',', featureRow.PartsNoCount.Select(
Dynamic\Transforms\Conversion\MapKeyToVectorMultiColumn.cs (2)
52string.Join(',', featureRow.TimeframeVector) + " " + 54string.Join(',', featureRow.CategoryVector));
System.Net.Requests (1)
System\Net\HttpWebResponse.cs (1)
103return string.Join(',', values);
System.Windows.Forms.Design.Tests (1)
System\Resources\Tools\CodeDomCompileHelper.cs (1)
55throw new InvalidOperationException(string.Join('\n', result.Diagnostics.Select(d => d.GetMessage())));
System.Windows.Forms.Primitives.TestUtilities (4)
Metafiles\RecordTypes\EMRPOLY16.cs (2)
42public override string ToString() => $"[EMR{emr.iType}] Bounds: {rclBounds} Points: {string.Join(' ', points.ToArray())}"; 47return $"[EMR{emr.iType}] Bounds: {rclBounds} Points: {string.Join(' ', transformedPoints)}";
Metafiles\RecordTypes\EMRPOLYPOLY16.cs (2)
45sb.Append($"\n\tPoly index {i}: {string.Join(' ', GetPointsForPoly(i).ToArray())}"); 49sb.Append($"\n\tPoly index {i}: {string.Join(' ', GetPointsForPoly(i).Transform(p => state.TransformPoint(p)))}");
TestProject.AppHost (1)
tests\testproject\Common\TestResourceNames.cs (1)
39return string.Join(',', Enum.GetValues<TestResourceNames>()
TestProject.IntegrationServiceA (1)
tests\testproject\Common\TestResourceNames.cs (1)
39return string.Join(',', Enum.GetValues<TestResourceNames>()