Base:
method
FlushAsync
System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)
2 references to FlushAsync
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpResponseStream.cs (1)
61return _pipeWriter.FlushAsync(cancellationToken).GetAsTask();
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
HttpResponsePipeWriterTests.cs (1)
59var ex = Assert.Throws<ObjectDisposedException>(() => { pipeWriter.FlushAsync(); });