5 references to ReadAllBytesAsync
Aspire.Hosting.Tests (3)
Dashboard\DashboardServiceTests.cs (3)
1150Assert.Equal("content", Encoding.UTF8.GetString(await file.ReadAllBytesAsync())); 1154var readAllBytesTask = file.ReadAllBytesAsync(); 1167Task ReadAllBytesAfterDisposeAsync() => file.ReadAllBytesAsync();
Stress.AppHost (2)
InteractionCommands.cs (2)
1019var content = await file.ReadAllBytesAsync(commandContext.CancellationToken); 1071var bytes = await file.ReadAllBytesAsync(commandContext.CancellationToken);