从 C# 表单应用程序调用 Web 服务
我有一个网络服务,其中有一个方法。
我可以使用以下命令从 ac# webapp 调用它:
MyWebService mws = new MyWebService();
mws.MyMethod();
但是,如果我尝试从 ac# forms 应用程序调用它,我会以相同的方式添加 web 服务。
这次如果我使用智能感知,我会得到以下方法/属性:
MyMethodRequest
MyMethodRequestBody
MyMethodResponse
MyMethodResponseBody
MyWebServiceSoap
MyWebServiceSoapChannel
MyWebServiceSoapClient
如何调用我的方法?
I have a webservice with a method in it.
I can call it fine from a c# webapp using the following:
MyWebService mws = new MyWebService();
mws.MyMethod();
However, if I try and call it from a c# forms app, I add the webservice in the same way.
This time if I use intellisense, I get the following methods / properties:
MyMethodRequest
MyMethodRequestBody
MyMethodResponse
MyMethodResponseBody
MyWebServiceSoap
MyWebServiceSoapChannel
MyWebServiceSoapClient
How do I call my method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最有可能的是:
most probably: