I'm dealing with an endpoint that someone else wrote a long time ago that the return looks like this:
return Ok();
On my side, with most of the other endpoints, I know how to deal with the return values. Like with a boolean return, I'll do this:
bool result = httpClient.Post<bool>(this.Uri, request).Result;
But with that empty Ok(), I'm not sure how to handle it on my side. Any hints would be most appreciated.