wcf rest怎样包装多参数?急求!!!服务是使用wcf rest模板,请问怎样包装多个参数???例如:我写了以下这个简单的例子:
[WebInvoke(Method = "POST", UriTemplate = "f", RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.WrappedRequest)] public bool F(int id, bool b) { return b; }