8 references to OperationCanceledException
dotnet-openapi (1)
Commands\BaseCommand.cs (1)
306throw new OperationCanceledException("Failed to connect, retry canceled.", cancellationToken);
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Common\RetryHelper.cs (1)
30throw new OperationCanceledException("Failed to connect, retry canceled.", cancellationToken);
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\SoftCrashException.cs (1)
38public SoftCrashException(string message, CancellationToken token) : base(message, token) { }
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\SoftCrashException.cs (1)
38public SoftCrashException(string message, CancellationToken token) : base(message, token) { }
System.Linq.Parallel (1)
System\Linq\Parallel\Scheduling\CancellationState.cs (1)
76throw new OperationCanceledException(oceMessage, externalCancellationToken);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Threading\CancellationToken.cs (1)
368throw new OperationCanceledException(SR.OperationCanceled, this);
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskCanceledException.cs (1)
73base(SR.TaskCanceledException_ctor_DefaultMessage, task != null ? task.CancellationToken : CancellationToken.None)
System.Threading (1)
System\Threading\Barrier.cs (1)
746throw new OperationCanceledException(SR.Common_OperationCanceled, cancellationToken);