4 instantiations of TextChunk
Microsoft.AspNetCore.Components.Endpoints (4)
Rendering\Buffering\BufferedTextWriter.cs (4)
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));
5 references to TextChunk
Microsoft.AspNetCore.Components.Endpoints (5)
Rendering\Buffering\TextChunkListBuilder.cs (1)
16public void Add(TextChunk value)
Rendering\Buffering\TextChunkPage.cs (4)
9private readonly TextChunk[] _buffer; 20_buffer = new TextChunk[capacity]; 23public TextChunk[] Buffer => _buffer; 26public bool TryAdd(TextChunk value)