WPF/WCF: 函数不是 ServiceReference1 的成员
WPF/WCF: Function is not a member of ServiceReference1
我是开发新手 vb.net,我刚刚将 WPF 链接到 WCF。
链接它们后,我向 .svc.vb 文件 (WCF) 添加了一个函数,但它没有与 WPF 同步。在我写的 MainWindow.xaml.vb (WPF) 文件中:
Dim client = new ServiceReference1.servicePrincipalClient
我想做:
client.MyNewFonction
(这是我用WPF链接后添加到WCF的函数)
我有错误:
MyNewFonction is not a member of
MySolution.ServiceReference1.ServicePrincipalClient
有人可以告诉我如何解决这个错误吗?
服务引用不会在服务合同更改时自动更新。
使用 Update Service Reference 菜单选项将服务定义中的更改迁移到服务引用提供的生成代码中。
我是开发新手 vb.net,我刚刚将 WPF 链接到 WCF。 链接它们后,我向 .svc.vb 文件 (WCF) 添加了一个函数,但它没有与 WPF 同步。在我写的 MainWindow.xaml.vb (WPF) 文件中:
Dim client = new ServiceReference1.servicePrincipalClient
我想做:
client.MyNewFonction
(这是我用WPF链接后添加到WCF的函数)
我有错误:
MyNewFonction is not a member of MySolution.ServiceReference1.ServicePrincipalClient
有人可以告诉我如何解决这个错误吗?
服务引用不会在服务合同更改时自动更新。
使用 Update Service Reference 菜单选项将服务定义中的更改迁移到服务引用提供的生成代码中。