我有一个 SVC Web 服务位于
http://localhost/myProjects/WebServices/Retriever.svc
假设 Retriever.svc.cs 有一个方法
[WebGet]
[OperationContract]
public string[] CoolMethod(string prefixText, int count)
{
.....
return some string[];
}
我如何在浏览器中形成一个 URL 以查看它的输出?
我可以做一些类似的事情吗
http://localhost/myProjects/WebServices/Retriever.svc/CoolMethod?arg1?arg2