I used the REST API generator to create an API service to call a REST API (my own). It nicely generated the code below.
public async Task<MyApp.Models.MyAppApi.PostMeasureCalculate> PostCalculate(Models.MyAppDevDb.EMeasure eCMeasure)
{
var uri = new Uri(httpClient.BaseAddress, $"measure/calculate");
var request = new HttpRequestMessage(HttpMethod.Post, uri);
request.Content = JsonContent.Create<Models.MyAppDevDb.EMeasure>(eMeasure);
OnPostMeasureCalculate(request);
var response = await httpClient.SendAsync(request);
// My aim is to use custom code here to extract error details from response.Content before throwing the exception
response.EnsureSuccessStatusCode(); // Throws an exception that only contains: "Response status code does not indicate success: 400 (Bad Request)."
OnPostMeasureCalculateResponse(response);
return await response.Content.ReadFromJsonAsync<MyApp.Models.MyAppApi.PostMeasureCalculate>();
}
Problem: before I am able to get more details out of the response about any error, the call response.EnsureSuccessStatusCode() throws an exception and the response.content data is lost.
The only information left, if I catch the thrown exception in my *.razor.cs UI code is:
Response status code does not indicate success: 400 (Bad Request).
But my response.content would have been "Parameter x,y,z was invalid."
Question: How to process response.content in an error case, without changing "generated" code. I would like to do it over the callbacks that are provided by Radzen.
Thank you for any hints.