3 instantiations of ChannelClosedException
System.Threading.Channels (3)
System\Threading\Channels\ChannelReader.cs (1)
85throw new ChannelClosedException();
System\Threading\Channels\ChannelUtilities.cs (2)
363inner is not null && inner != s_doneWritingSentinel ? new ChannelClosedException(inner) : 364new ChannelClosedException();
14 references to ChannelClosedException
aspire (2)
Diagnostics\FileLoggerProvider.cs (2)
120catch (ChannelClosedException) 168catch (ChannelClosedException)
Aspire.Dashboard.Tests (1)
ChannelExtensionsTests.cs (1)
148catch (ChannelClosedException)
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\WebTransport\WebTransportSession.cs (1)
177catch (ChannelClosedException)
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubDispatcher.cs (1)
568catch (ChannelClosedException ex)
Microsoft.Build.Tasks.Core (1)
AssemblyDependency\Node\RarNodeBuildEngine.cs (1)
138catch (ChannelClosedException)
System.Net.Quic (2)
System\Net\Quic\QuicConnection.cs (1)
577catch (ChannelClosedException ex) when (ex.InnerException is not null)
System\Net\Quic\QuicListener.cs (1)
195catch (ChannelClosedException ex) when (ex.InnerException is not null)
System.Threading.Channels (6)
System\Threading\Channels\ChannelClosedException.cs (4)
9/// <summary>Initializes a new instance of the <see cref="ChannelClosedException"/> class.</summary> 13/// <summary>Initializes a new instance of the <see cref="ChannelClosedException"/> class.</summary> 17/// <summary>Initializes a new instance of the <see cref="ChannelClosedException"/> class.</summary> 22/// <summary>Initializes a new instance of the <see cref="ChannelClosedException"/> class.</summary>
System\Threading\Channels\ChannelClosedException.netstandard21.cs (1)
15/// <summary>Initializes a new instance of the <see cref="ChannelClosedException"/> class with serialized data.</summary>
System\Threading\Channels\ChannelReader.cs (1)
72catch (Exception exc) when (exc is not (ChannelClosedException or OperationCanceledException))