8 references to WriteToAsync
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\Buffering\TextChunkListBuilder.cs (2)
46await buffer[i].WriteToAsync(writer, charArraySegments, ref tempBuffer); 56await buffer[i].WriteToAsync(writer, charArraySegments, ref tempBuffer);
Microsoft.AspNetCore.Components.Endpoints.Tests (6)
Buffering\TextChunkPageTest.cs (1)
33await page.Buffer[i].WriteToAsync(writer, charArrayScope.ToString(), ref tempBuffer);
Buffering\TextChunkTest.cs (5)
17await chunk.WriteToAsync(_writer, string.Empty, ref _tempBuffer); 25await chunk.WriteToAsync(_writer, string.Empty, ref _tempBuffer); 39await chunk.WriteToAsync(_writer, charArrayScope.ToString(), ref _tempBuffer); 46await new TextChunk(123).WriteToAsync(_writer, string.Empty, ref _tempBuffer); 47await new TextChunk(456).WriteToAsync(_writer, string.Empty, ref _tempBuffer);