.net 2.0的项目添加wcf的web reference时,会多出几个out参数, 例如: out xxxResultSpecified
Posted on 2013-06-03 09:37 zqwuwei 阅读(418) 评论(0) 编辑 收藏 举报.net 2.0的项目添加web reference时,会多出几个out参数, 例如: out xxxResultSpecified
解决方法:
在接口上添加XmlSerializerFormat属性
[ServiceContract, XmlSerializerFormat]
public interface ITest
{...}
http://mynecessarycode.blogspot.hk/2011/09/problem-with-result-and-result.html