23 implementations of StartAsync
Aspire.Hosting (3)
Dashboard\DashboardServiceHost.cs (1)
201async Task IHostedService.StartAsync(CancellationToken cancellationToken)
DistributedApplicationLifecycle.cs (1)
17public Task StartAsync(CancellationToken cancellationToken)
Orchestrator\OrchestratorHostService.cs (1)
32public async Task StartAsync(CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (1)
AppHostSmokeTests.cs (1)
102public Task StartAsync(CancellationToken cancellationToken)
http2cat (1)
src\Shared\Http2cat\Http2CatHostedService.cs (1)
43public Task StartAsync(CancellationToken cancellationToken)
IIS.FunctionalTests (1)
src\Shared\Http2cat\Http2CatHostedService.cs (1)
43public Task StartAsync(CancellationToken cancellationToken)
IIS.LongTests (1)
src\Shared\Http2cat\Http2CatHostedService.cs (1)
43public Task StartAsync(CancellationToken cancellationToken)
IIS.NewHandler.FunctionalTests (1)
src\Shared\Http2cat\Http2CatHostedService.cs (1)
43public Task StartAsync(CancellationToken cancellationToken)
IIS.NewShim.FunctionalTests (1)
src\Shared\Http2cat\Http2CatHostedService.cs (1)
43public Task StartAsync(CancellationToken cancellationToken)
IISExpress.FunctionalTests (1)
src\Shared\Http2cat\Http2CatHostedService.cs (1)
43public Task StartAsync(CancellationToken cancellationToken)
Microsoft.AspNetCore.DataProtection (1)
Internal\DataProtectionHostedService.cs (1)
29public Task StartAsync(CancellationToken token)
Microsoft.AspNetCore.Hosting (1)
GenericHost\GenericWebHostService.cs (1)
62public async Task StartAsync(CancellationToken cancellationToken)
Microsoft.AspNetCore.Hosting.Tests (5)
WebHostBuilderTests.cs (3)
1436public Task StartAsync(CancellationToken cancellationToken) 1538public Task StartAsync(CancellationToken cancellationToken) 1554public Task StartAsync(CancellationToken cancellationToken)
WebHostTests.cs (2)
1166public Task StartAsync(CancellationToken token) 1197public Task StartAsync(CancellationToken token)
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (1)
src\Shared\Http2cat\Http2CatHostedService.cs (1)
43public Task StartAsync(CancellationToken cancellationToken)
Microsoft.AspNetCore.Tests (1)
WebApplicationTests.cs (1)
313public Task StartAsync(CancellationToken cancellationToken)
Microsoft.Extensions.Diagnostics.HealthChecks (1)
HealthCheckPublisherHostedService.cs (1)
62public Task StartAsync(CancellationToken cancellationToken = default)
Microsoft.Extensions.Diagnostics.HealthChecks.Tests (1)
DependencyInjection\ServiceCollectionExtensionsTest.cs (1)
85public Task StartAsync(CancellationToken cancellationToken)
Microsoft.Extensions.Hosting.Abstractions (1)
BackgroundService.cs (1)
40public virtual Task StartAsync(CancellationToken cancellationToken)
Nats.Backend (1)
Program.cs (1)
25public Task StartAsync(CancellationToken cancellationToken)
8 references to StartAsync
Microsoft.AspNetCore.Hosting (1)
Internal\HostedServiceExecutor.cs (1)
21await service.StartAsync(token);
Microsoft.Extensions.Hosting (1)
Internal\Host.cs (1)
124await service.StartAsync(token).ConfigureAwait(false);
Microsoft.Extensions.Hosting.Abstractions (3)
IHostedLifecycleService.cs (3)
11/// <see cref="IHostedService.StartAsync(CancellationToken)"/> and 17/// Triggered before <see cref="IHostedService.StartAsync(CancellationToken)"/>. 24/// Triggered after <see cref="IHostedService.StartAsync(CancellationToken)"/>.
Microsoft.Extensions.Hosting.Testing (1)
FakeHostingExtensions.cs (1)
38await service.StartAsync(cancellationToken).ConfigureAwait(false);
Microsoft.Extensions.Hosting.Testing.Tests (1)
HostingFakesExtensionsTests.cs (1)
31serviceMock.Setup(x => x.StartAsync(tokenSource.Token)).Returns(Task.CompletedTask);
Microsoft.Extensions.Http.Diagnostics.Tests (1)
Logging\HttpClientLoggingExtensionsTest.cs (1)
327.StartAsync(CancellationToken.None);