[ServiceContract]
public interface IService1
{
[OperationContract]
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "GetInstantDebitResponse/{param}")]
string GetInstantDebitResponse(string param);
}
我是新来的,所以请原谅我不要写技术。我正在使用上面的函数来调用函数 GetInstantDebitResponse(string param)。因此,在网址中,我正在调用 http://localhost:45678/Service1.svc/GetInstantDebitResponse/abc 。
如果我必须调用以下网址,我应该做出哪些更改: 的 http://localhost:45678/Service1.svc/GetInstantDebitResponse?param1=abc¶m2=def¶m3=ghi