The API I'm trying to call requires that I do a POST but with an empty body. I'm new to using the WCF Web API HttpClient and I can't seem to find out the write code that would do a post with an empty body. I find references to some HttpContent.CreateEmpty() method, but I don't think that is for the Web API HttpClient code since I can't seem to find that method.
feedback
|
|
Have you tried using e.g. StringContent or ObjectContent which derive from HttpContent? | |||||||||
feedback
|
|
I think it does that automagically if your web method has no parameters or they all fit into URL template. For example this declaration sends empty body:
| |||||||
feedback
|