今天在做 webservice 的时候 发现一个问题,
[C#] 纯文本查看 复制代码 [WebMethod()]
public void ResetSterileOK(Model_GYS_Mjxx model, string userCode, out string msg)
{
BLL.Core.Data.SterileController.ResetSterileOK(model, userCode, out msg);
}
当我的service 方法 使用到 out 的时候 在客户端引用是看不到 这儿方法的。而必须加上 返回值
[C#] 纯文本查看 复制代码 [WebMethod()]
public bool ResetSterileOK(Model_GYS_Mjxx model, string userCode, out string msg)
{
BLL.Core.Data.SterileController.ResetSterileOK(model, userCode, out msg);
return true;
}
疑惑, 是因为 out 必须要返回值吗?
飞哥,帮忙答疑下。。
|