我创建了一个非常简单的 Web 服务,并在我的项目中引用了它,当我定义它时它都检查出来了......
wstest.Service1 ws;
ws = new wstest.Service1(); string xx = ws.HelloWorld();
但是当它运行时,这里会出现错误(未处理的异常/System.Net.WebExceptions)
public string HelloWorld() {
object[] results = this.Invoke("HelloWorld", new object[0]);
return ((string)(results[0]));
}
它似乎对 Invoke 一无所知......我被困住了,任何帮助将不胜感激,谢谢!
时间:2019-05-10 标签:c#androidweb-servicesmono