I'm trying to send some data on the request body using PUT verb but is not working. Nothing is sent.
Does anyone know how to solve that?
This is my code:
data = "{\"assignee\":\"" + USER_NAME + "\"}";
browser.NavigateToPage(new Uri(URL), HttpVerb.Put, data);
When looking the request through fiddler i can see nothing is being passed on the body.