我正在尝试添加对 WCF 服务的 Web 引用。通过项目浏览器浏览到该服务时,添加到该服务的新功能未列出。
这是我在 *.svc 文件中的代码
public class Service1 : IService1
{
public string GetData(int value){;}
public CompositeType GetDataUsingDataContract(CompositeType composite){;}
public double Undo(double value, bool isPound){;}
}
现在,在将我的服务引用为 UndoService 时,我的 Undo 方法没有出现。智能感知显示以下内容:
(class) CompositeType
(interface) Service1
(interface) Service1Channel
(class) Service1Client
这可能是一个幼稚的问题,但我无法继续。我可能在这里遗漏了一些重要的东西。请帮忙!