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)
16
public void Add(
TextChunk
value)
Rendering\Buffering\TextChunkPage.cs (4)
9
private readonly
TextChunk
[] _buffer;
20
_buffer = new
TextChunk
[capacity];
23
public
TextChunk
[] Buffer => _buffer;
26
public bool TryAdd(
TextChunk
value)