Consider the following class
public class StController:apicontroller {
public void PostBodyMethod() {
HttpRequestMessage request=this.request;
//How to read the header and body parameters
}
}
The applet sends both the header and body parameters to the post method. How to retrieve the information which is sent along with post method inside the webapi controller using the HttpRequestMessage object?
