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