9 references to OperationCanceledException
Microsoft.AspNetCore.Session (3)
DistributedSession.cs (3)
235throw new OperationCanceledException("Timed out loading the session.", oex, cts.Token); 290throw new OperationCanceledException("Timed out committing the session.", oex, cts.Token); 302throw new OperationCanceledException("Timed out refreshing the session.", oex, cts.Token);
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
1954return new OperationCanceledException(message, innerException, _state.StopCts.Token);
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\SoftCrashException.cs (1)
39public SoftCrashException(string message, Exception innerException, CancellationToken token) : base(message, innerException, token) { }
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\SoftCrashException.cs (1)
39public SoftCrashException(string message, Exception innerException, CancellationToken token) : base(message, innerException, token) { }
System.IO.Pipelines (1)
System\IO\Pipelines\StreamPipeReader.cs (1)
292throw new OperationCanceledException(ex.Message, ex, cancellationToken);
System.Net.WebSockets (1)
System\Net\WebSockets\ManagedWebSocket.cs (1)
1729return new OperationCanceledException(
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskCanceledException.cs (1)
63public TaskCanceledException(string? message, Exception? innerException, CancellationToken token) : base(message ?? SR.TaskCanceledException_ctor_DefaultMessage, innerException, token)