WCF REST - 通过URL传递多个参数

时间:2017-03-14 12:53:14

标签: c# wcf wcf-rest

[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&param2=def&param3=ghi

0 个答案:

没有答案