2

我在我的界面中使用以下代码并使用 webapi 服务。

[OperationContract]
[WebInvoke(Method = "GET")]
bool IsPaymentGatewayExitsForTenant(string tenantSlugName, string productCode);

我在本地运行并使用休息客户端测试服务

api/PaymentGatewayService/IsPaymentGatewayExitsForTenant?tenantSlugName=KPN&productCode=POSS

但我收到以下错误enter code here

{"Message":"The requested resource does not support http method 'GET'."} `enter code here`

任何帮助都会受到欢迎。

4

1 回答 1

5

IsPaymentGatewayExitsForTenant能用“ HttpGet”属性装饰你的控制器类方法“”吗

[System.Web.Http.HttpGet]
bool IsPaymentGatewayExitsForTenant(string tenantSlugName, string productCode)
{
   // your code goes here
}

希望这有效

于 2013-10-30T06:23:02.603 回答