我正在从 wsdl 生成 Web 服务,并在其中包含一些带有属性的方法。
[System.ServiceModel.OperationContractAttribute(Action="http://link/update", ReplyAction="*")]
WebServices.updateResponse update(WebServices.updateRequest request);
当我尝试在我的 VS2010 项目中添加对此服务的引用时,根本没有任何方法。
在我改变属性之后
[System.ServiceModel.OperationContract]
WebServices.updateResponse update(WebServices.updateRequest request);
这些方法都是可用的。
第一种情况有什么问题?