2 writes to _currentOutput
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\Buffering\BufferedTextWriter.cs (2)
20
_currentOutput
= new(PageSize);
62
_currentOutput
= _previousOutput ?? new(PageSize);
5 references to _currentOutput
Microsoft.AspNetCore.Components.Endpoints (5)
Rendering\Buffering\BufferedTextWriter.cs (5)
26
=>
_currentOutput
.Add(new TextChunk(value));
29
=>
_currentOutput
.Add(new TextChunk(new ArraySegment<char>(buffer, index, count), _charArraySegmentBuilder));
35
_currentOutput
.Add(new TextChunk(value));
40
=>
_currentOutput
.Add(new TextChunk(value));
61
var outputToFlush =
_currentOutput
;