74 references to WhenAll
InMemory.FunctionalTests (1)
RequestTests.cs (1)
265await Task.WhenAll(pathTcs.Task, rawTargetTcs.Task, queryTcs.Task).DefaultTimeout();
InProcessWebSite (2)
src\Servers\IIS\IIS\test\testassets\InProcessWebSite\Startup.cs (2)
553await Task.WhenAll(t1, t2); 752await Task.WhenAll(t1, t2);
JwtClientSample (1)
Program.cs (1)
16await Task.WhenAll(
Microsoft.AspNetCore.Components.Endpoints (1)
Rendering\EndpointHtmlRenderer.PrerenderingState.cs (1)
100await Task.WhenAll(
Microsoft.AspNetCore.Components.Server (2)
Circuits\CircuitHost.cs (2)
138await Task.WhenAll(pendingRenders); 853await Task.WhenAll(pendingTasks);
Microsoft.AspNetCore.Components.Tests (1)
RendererTest.cs (1)
348await Task.WhenAll(renderTask1, renderTask2);
Microsoft.AspNetCore.Http.Connections.Tests (1)
HttpConnectionDispatcherTests.cs (1)
642await Task.WhenAll(executeTask1, executeTask2);
Microsoft.AspNetCore.Mvc.TagHelpers.Test (5)
CacheTagHelperTest.cs (3)
606await Task.WhenAll(task1, task2); 689await Task.WhenAll(task1, task2); 922await Task.WhenAll(task1, task2);
DistributedCacheTagHelperTest.cs (2)
609await Task.WhenAll(task1, task2); 701await Task.WhenAll(task1, task2);
Microsoft.AspNetCore.OutputCaching.Tests (3)
CachedResponseBodyTests.cs (3)
37await Task.WhenAll(receiverTask, copyTask); 60await Task.WhenAll(receiverTask, copyTask); 84await Task.WhenAll(receiverTask, copyTask);
Microsoft.AspNetCore.ResponseCaching.Tests (3)
CachedResponseBodyTests.cs (3)
45await Task.WhenAll(receiverTask, copyTask); 67await Task.WhenAll(receiverTask, copyTask); 90await Task.WhenAll(receiverTask, copyTask);
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (5)
ServerTests.cs (5)
442await Task.WhenAll(stopTask1, stopTask2, stopTask3).TimeoutAfter(TimeSpan.FromSeconds(10)); 476await Task.WhenAll(stopTask1, stopTask2, stopTask3).TimeoutAfter(TimeSpan.FromSeconds(10)); 513await Task.WhenAll(stopTask1, stopTask2, stopTask3).TimeoutAfter(TimeSpan.FromSeconds(10)); 550await Task.WhenAll(stopTask1, stopTask2, stopTask3).TimeoutAfter(TimeSpan.FromSeconds(10)); 585await Task.WhenAll(stopTask1, stopTask2).TimeoutAfter(TimeSpan.FromSeconds(10));
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Infrastructure\TransportConnectionManager.cs (2)
68var allClosedTask = Task.WhenAll(closeTasks.ToArray()); 85var allAbortedTask = Task.WhenAll(abortTasks.ToArray());
Internal\Infrastructure\TransportManager.cs (3)
134await Task.WhenAll(tasks).ConfigureAwait(false); 154await Task.WhenAll(tasks).ConfigureAwait(false); 161await Task.WhenAll(tasks).ConfigureAwait(false);
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
KestrelServerTests.cs (1)
588await Task.WhenAll(new[] { stopTask1, stopTask2, stopTask3 }).DefaultTimeout();
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
NamedPipesTransportBenchmark.cs (1)
120await Task.WhenAll(parallelTasks);
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeConnectionListener.cs (1)
88await Task.WhenAll(listeningTasks);
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
RedisHubLifetimeManager.cs (1)
109await Task.WhenAll(connectionTask, userTask);
Microsoft.AspNetCore.SignalR.Tests (28)
HubConnectionHandlerTests.cs (28)
1381await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1399await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1419await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1438await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1457await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1479await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1498await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1517await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1563await Task.WhenAll(firstClient.Connected, secondClient.Connected, thirdClient.Connected).DefaultTimeout(); 1588await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask, thirdConnectionHandlerTask).DefaultTimeout(); 1609await Task.WhenAll(firstClient.Connected, secondClient.Connected, thirdClient.Connected).DefaultTimeout(); 1636await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask, thirdConnectionHandlerTask).DefaultTimeout(); 1657await Task.WhenAll(firstClient.Connected, secondClient.Connected, thirdClient.Connected).DefaultTimeout(); 1681await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask, thirdConnectionHandlerTask).DefaultTimeout(); 1700await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1725await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1744await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1778await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1797await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1829await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1848await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1872await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1914await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1929await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1948await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1963await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout(); 1981await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout(); 1996await Task.WhenAll(firstConnectionHandlerTask, secondConnectionHandlerTask).DefaultTimeout();
Microsoft.AspNetCore.SpaServices.Extensions (1)
Proxying\SpaProxy.cs (1)
263await Task.WhenAll(
Microsoft.Build (2)
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
786await Task.WhenAll(tasks).ConfigureAwait(false); 854await Task.WhenAll(cleanupTasks).ConfigureAwait(false);
Microsoft.Extensions.Caching.StackExchangeRedis (1)
RedisCache.cs (1)
233await Task.WhenAll(
Microsoft.Extensions.Diagnostics.HealthChecks (1)
HealthCheckPublisherHostedService.cs (1)
201await Task.WhenAll(tasks).ConfigureAwait(false);
Templates.Blazor.Tests (6)
BlazorWasmTemplateTest.cs (6)
322await Task.WhenAll( 329await Task.WhenAll( 335await Task.WhenAll( 339await Task.WhenAll( 352await Task.WhenAll( 357await Task.WhenAll(
WebSocketSample (1)
Program.cs (1)
46await Task.WhenAll(sending, receiving);