10 overrides of FlushAsync
Microsoft.AspNetCore.Components.Endpoints (1)
Rendering\Buffering\BufferedTextWriter.cs (1)
45public override Task FlushAsync()
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
Buffers\PagedBufferedTextWriter.cs (1)
29public override Task FlushAsync() => FlushAsyncCore();
Buffers\ViewBufferTextWriter.cs (1)
271public override async Task FlushAsync()
Microsoft.AspNetCore.WebUtilities (1)
HttpResponseStreamWriter.cs (1)
514public override Task FlushAsync()
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
58public override Task FlushAsync() => _writer.FlushAsync();
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
931public override Task FlushAsync()
src\libraries\System.Private.CoreLib\src\System\IO\StringWriter.cs (1)
303public override Task FlushAsync()
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
103public override async Task FlushAsync()
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
701public override Task FlushAsync() => Task.CompletedTask; 1037public override Task FlushAsync()
45 references to FlushAsync
Microsoft.AspNetCore.Components.Endpoints (4)
Rendering\Buffering\BufferedTextWriter.cs (1)
67await _underlying.FlushAsync();
Rendering\EndpointHtmlRenderer.cs (1)
235await writerToFlush.FlushAsync();
Rendering\EndpointHtmlRenderer.Streaming.cs (2)
74await writer.FlushAsync(); 91await writer.FlushAsync(); // Important otherwise the client won't receive the error message, as we're about to fail the pipeline
Microsoft.AspNetCore.Components.Endpoints.Tests (4)
Buffering\BufferedTextWriterTest.cs (4)
26await writer.FlushAsync(); 41var flushAsyncTask1 = writer.FlushAsync(); 48var flushAsyncTask2 = writer.FlushAsync(); 55var flushAsyncTask3 = writer.FlushAsync();
Microsoft.AspNetCore.Diagnostics (2)
src\Shared\RazorViews\BaseView.cs (2)
70await Output.FlushAsync(); 88await Output.FlushAsync();
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (2)
src\Shared\RazorViews\BaseView.cs (2)
70await Output.FlushAsync(); 88await Output.FlushAsync();
Microsoft.AspNetCore.Hosting (2)
src\Shared\RazorViews\BaseView.cs (2)
70await Output.FlushAsync(); 88await Output.FlushAsync();
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ContentResultExecutor.cs (1)
70await textWriter.FlushAsync();
Microsoft.AspNetCore.Mvc.Razor (3)
RazorPageBase.cs (2)
672/// Invokes <see cref="TextWriter.FlushAsync()"/> on <see cref="Output"/> and <see cref="m:Stream.FlushAsync"/> 700await Output.FlushAsync();
RazorView.cs (1)
264await writer.FlushAsync();
Microsoft.AspNetCore.Mvc.Razor.Test (1)
RazorPageTest.cs (1)
877writer.Verify(v => v.FlushAsync(), Times.Once());
Microsoft.AspNetCore.Mvc.ViewFeatures (5)
Buffers\ViewBuffer.cs (2)
238await writer.FlushAsync(); 245await writer.FlushAsync();
Buffers\ViewBufferTextWriter.cs (1)
283await _inner.FlushAsync();
ViewComponentResultExecutor.cs (1)
122await writer.FlushAsync();
ViewExecutor.cs (1)
229await writer.FlushAsync();
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (11)
Buffers\PagedBufferedTextWriterTest.cs (10)
36await writer.FlushAsync(); 54await writer.FlushAsync(); 87await writer.FlushAsync(); 133await writer.FlushAsync(); 151await writer.FlushAsync(); 179await writer.FlushAsync(); 257await writer.FlushAsync(); 277await writer.FlushAsync(); 297await writer.FlushAsync(); 317await writer.FlushAsync();
Buffers\ViewBufferTextWriterTest.cs (1)
45await writer.FlushAsync();
Microsoft.AspNetCore.Server.IIS (2)
src\Shared\RazorViews\BaseView.cs (2)
70await Output.FlushAsync(); 88await Output.FlushAsync();
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
Rpc\RpcServer.cs (1)
178await _streamWriter.FlushAsync().ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
src\Workspaces\MSBuild\BuildHost\Rpc\RpcServer.cs (1)
178await _streamWriter.FlushAsync().ConfigureAwait(false);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
58public override Task FlushAsync() => _writer.FlushAsync();
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
935return base.FlushAsync();
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
107await writer.FlushAsync().ConfigureAwait(false);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
686FlushAsync();
System.Private.Xml (2)
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (2)
111await _writer.FlushAsync().ConfigureAwait(false); 608await _writer.FlushAsync().ConfigureAwait(false);