4 references to CreateLinkedTokenSource
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
854
var tokenSource = CancellationTokenSource.
CreateLinkedTokenSource
(Cancellation.Token, nonClonedContext.RequestAborted, timeoutSource.Token);
Microsoft.DotNet.HotReload.Watch (2)
HotReload\RunningProjectsManager.cs (1)
65
using var processCommunicationCancellationSource = CancellationTokenSource.
CreateLinkedTokenSource
(processTerminationSource.Token, processExitedSource.Token, cancellationToken);
src\sdk\src\Dotnet.Watch\AspireService\AspireServerService.cs (1)
397
using var cancelTokenSource = CancellationTokenSource.
CreateLinkedTokenSource
(
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\CancellationTokenSource.cs (1)
866
return
CreateLinkedTokenSource
((ReadOnlySpan<CancellationToken>)tokens);