Hello, I have a WebApi service and would like to get an answer specifically with a Date, but by the time I call that service and I get the return from my PostAsync what I see is just an httpResult saying that was OK.
call to WebApi var result = await client.PostAsync (URI, content);
Return of the web method api return Request.CreateResponse (HttpStatusCode.OK, dataTest);
Whatever I send in return, I do not receive ...
I tried changing the method's return type to DateTime, or string, but it did not work either. Currently it is an HttpResponseMessage m