9 references to ReadAsByteArrayAsync
Aspire.Dashboard.Tests (6)
Integration\OtlpHttpServiceTests.cs (5)
53var response = ExportLogsServiceResponse.Parser.ParseFrom(await responseMessage.Content.ReadAsByteArrayAsync().DefaultTimeout()); 179var response = ExportLogsServiceResponse.Parser.ParseFrom(await responseMessage.Content.ReadAsByteArrayAsync().DefaultTimeout()); 344var response = ExportLogsServiceResponse.Parser.ParseFrom(await responseMessage.Content.ReadAsByteArrayAsync()); 373var response = ExportTraceServiceResponse.Parser.ParseFrom(await responseMessage.Content.ReadAsByteArrayAsync().DefaultTimeout()); 402var response = ExportMetricsServiceResponse.Parser.ParseFrom(await responseMessage.Content.ReadAsByteArrayAsync().DefaultTimeout());
Integration\StartupTests.cs (1)
534var response = ExportLogsServiceResponse.Parser.ParseFrom(await responseMessage.Content.ReadAsByteArrayAsync().DefaultTimeout());
Infrastructure.Common (2)
ServiceUtilHelper.cs (2)
598return response.Content.ReadAsByteArrayAsync().GetAwaiter().GetResult(); 617return await response.Content.ReadAsByteArrayAsync();
NuGet.Packaging (1)
Signing\Timestamp\Rfc3161TimestampRequestNetstandard21Wrapper.cs (1)
71var data = await httpResponse.Content.ReadAsByteArrayAsync();