4 references to WeatherForecast
Keycloak.Web (4)
WeatherApiClient.cs (4)
5
public async Task<
WeatherForecast
[]> GetWeatherAsync(int maxItems = 10, CancellationToken cancellationToken = default)
7
List<
WeatherForecast
>? forecasts = null;
9
await foreach (
var
forecast in httpClient.GetFromJsonAsAsyncEnumerable<
WeatherForecast
>("/weatherforecast", cancellationToken))