10 overrides of CancelPendingFlush
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http\HttpResponsePipeWriter.cs (1)
28
public override void
CancelPendingFlush
()
Internal\Infrastructure\PipeWriterHelpers\ConcurrentPipeWriter.cs (1)
186
public override void
CancelPendingFlush
()
Internal\Infrastructure\StatusCheckPipeWriter.cs (1)
46
public override void
CancelPendingFlush
()
Internal\Infrastructure\ThrowingPipeWriter.cs (1)
19
public override void
CancelPendingFlush
() => throw new InvalidOperationException(_message);
Internal\Infrastructure\WrappingPipeWriter.cs (1)
31
public override void
CancelPendingFlush
()
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
src\aspnetcore\src\Servers\Kestrel\shared\CompletionPipeWriter.cs (1)
28
public override void
CancelPendingFlush
()
Microsoft.Extensions.Logging.Console (1)
src\runtime\src\libraries\Common\src\System\Text\Json\PooledByteBufferWriter.cs (1)
90
public override void
CancelPendingFlush
() => throw new NotImplementedException();
System.IO.Pipelines (2)
System\IO\Pipelines\Pipe.DefaultPipeWriter.cs (1)
24
public override void
CancelPendingFlush
() => _pipe.CancelPendingFlush();
System\IO\Pipelines\StreamPipeWriter.cs (1)
204
public override void
CancelPendingFlush
()
System.Text.Json (1)
src\runtime\src\libraries\Common\src\System\Text\Json\PooledByteBufferWriter.cs (1)
90
public override void
CancelPendingFlush
() => throw new NotImplementedException();
13 references to CancelPendingFlush
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionContext.cs (1)
303
Application?.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)
476
Input.
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>