如何在wcf服务中读取提交POST时发送的数据。此数据可以是html查询字符串或json / xml数据发送到服务。
我可以发现html查询字符串可以从Request.Form中获取但是如何获取json / xml / soap数据?
代码:
public string Save(Stream RequestBody)
{
string Errors="";
try
{
NameValueCollection PostParameters=HttpUtility.ParseQueryString(new StreamReader(RequestBody).ReadToEnd());
//other code
}
}