我正在开发一个项目,在通过了解其URL来验证其参数后动态调用WebMethod
。
这是我的尝试:
[WebMethod]
public string CalledService (string myText, int count)
{
return myText;
}
我所知道的只是它的网址
http://localhost:29740/OnewayWebserviceCall/WebService.asmx?op=CalledService
我需要一个返回{"myText","count"}
我尝试下载URL字符串并搜索其中的参数,但我需要更长时间的效率。