下面是我在WCF服務中寫的代碼
[OperationContract]
[WebInvoke(
Method = "POST",
BodyStyle = WebMessageBodyStyle.WrappedRequest,
ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json)]
void DoWork(string jsonstr,int boxid);
為什麼WebInvoke報錯?錯誤提示“未找到類型或命名空間WebInvoke(是否缺少using指令或程序集引用)”。怎麼解決?
你的項目需要引用System.ServiceModel.Web.dll
且在文件裡面加入using System.ServiceModel.Web;