1 write to _executeTask
Microsoft.Extensions.Hosting.Abstractions (1)
BackgroundService.cs (1)
46
_executeTask
= ExecuteAsync(_stoppingCts.Token);
5 references to _executeTask
Microsoft.Extensions.Hosting.Abstractions (5)
BackgroundService.cs (5)
24
public virtual Task? ExecuteTask =>
_executeTask
;
49
if (
_executeTask
.IsCompleted)
51
return
_executeTask
;
66
if (
_executeTask
== null)
79
await
_executeTask
.WaitAsync(cancellationToken).ConfigureAwait(ConfigureAwaitOptions.SuppressThrowing);