10 overrides of CancelPendingFlush
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http\HttpResponsePipeWriter.cs (1)
28public override void CancelPendingFlush()
Internal\Infrastructure\PipeWriterHelpers\ConcurrentPipeWriter.cs (1)
186public override void CancelPendingFlush()
Internal\Infrastructure\StatusCheckPipeWriter.cs (1)
46public override void CancelPendingFlush()
Internal\Infrastructure\ThrowingPipeWriter.cs (1)
19public override void CancelPendingFlush() => throw new InvalidOperationException(_message);
Internal\Infrastructure\WrappingPipeWriter.cs (1)
31public override void CancelPendingFlush()
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
src\aspnetcore\src\Servers\Kestrel\shared\CompletionPipeWriter.cs (1)
28public override void CancelPendingFlush()
Microsoft.Extensions.Logging.Console (1)
src\runtime\src\libraries\Common\src\System\Text\Json\PooledByteBufferWriter.cs (1)
90public override void CancelPendingFlush() => throw new NotImplementedException();
System.IO.Pipelines (2)
System\IO\Pipelines\Pipe.DefaultPipeWriter.cs (1)
24public override void CancelPendingFlush() => _pipe.CancelPendingFlush();
System\IO\Pipelines\StreamPipeWriter.cs (1)
204public override void CancelPendingFlush()
System.Text.Json (1)
src\runtime\src\libraries\Common\src\System\Text\Json\PooledByteBufferWriter.cs (1)
90public override void CancelPendingFlush() => throw new NotImplementedException();
13 references to CancelPendingFlush
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionContext.cs (1)
303Application?.Output.CancelPendingFlush();
Internal\Transports\WebSocketsServerTransport.cs (1)
121_application.Output.CancelPendingFlush();
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http3\Http3OutputProducer.cs (2)
146_pipeWriter.CancelPendingFlush(); 302_pipeWriter.CancelPendingFlush();
Internal\Infrastructure\PipeWriterHelpers\ConcurrentPipeWriter.cs (1)
189_innerPipeWriter.CancelPendingFlush();
Internal\Infrastructure\StatusCheckPipeWriter.cs (1)
49_inner.CancelPendingFlush();
Internal\Infrastructure\WrappingPipeWriter.cs (1)
33_inner.CancelPendingFlush();
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
Internal\QuicStreamContext.cs (1)
476Input.CancelPendingFlush();
src\aspnetcore\src\Servers\Kestrel\shared\CompletionPipeWriter.cs (1)
30_inner.CancelPendingFlush();
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
515_connectionContext.Transport.Output.CancelPendingFlush();
System.IO.Pipelines (3)
System\IO\Pipelines\FlushResult.cs (3)
12/// <param name="isCanceled"><see langword="true" /> to indicate the current <see cref="System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation that produced this <see cref="System.IO.Pipelines.FlushResult" /> was canceled by <see cref="System.IO.Pipelines.PipeWriter.CancelPendingFlush" />; otherwise, <see langword="false" />.</param> 29/// <summary>Gets a value that indicates whether the current <see cref="System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation was canceled by <see cref="System.IO.Pipelines.PipeWriter.CancelPendingFlush" />.</summary> 30/// <value><see langword="true" /> if the current <see cref="System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation was canceled by <see cref="System.IO.Pipelines.PipeWriter.CancelPendingFlush" />; otherwise, <see langword="false" />.</value>