5 references to GetFromJsonAsync
Aspire.Hosting.Testing.Tests (4)
TestingBuilderTests.cs (2)
192var result1 = await httpClient.GetFromJsonAsync<WeatherForecast[]>("/weatherforecast"); 437var result = await httpClient.GetFromJsonAsync<WeatherForecast[]>("/weatherforecast");
TestingFactoryTests.cs (2)
56var result1 = await httpClient.GetFromJsonAsync<WeatherForecast[]>("/weatherforecast"); 83var result = await httpClient.GetFromJsonAsync<WeatherForecast[]>("/weatherforecast");
MyFrontend (1)
Services\CatalogServiceClient.cs (1)
18return client.GetFromJsonAsync<Catalog>($"api/v1/catalog/items/type/all/brand{query}");