摘要: 在WebAPI中,请求主体(HttpContent)只能被读取一次,不被缓存,只能向前读取的流。举例子说明:/?id=123&name=bobvoid Action(int id, string name) // 所有参数都是简单类型,因而都将来自url/?id=123&name=bobvoid Action([FromUri] int id, [FromUri] string name) // 同上void Action([FromBody] string name); //[FormBody]特性显示标明读取整个body为一个字符串作为参数public class Cust 阅读全文
posted @ 2014-01-14 17:14 天际翔龙 阅读(4976) 评论(3) 推荐(0) 编辑