❔ 415 error from HttpClient put to a controller using FromBody

(await _client.PutAsync("foo", new StringContent(5.ToString()))).EnsureSuccessStatusCode();

public async Task Put([FromBody]int bar)

error 415 (Unsupported Media Type).
Was this page helpful?