0
我的方法的合同是這樣的:WCF resful服務方法= 「刪除」
[OperationContract]
[WebInvoke(
Method = "DELETE", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, UriTemplate = "/myMethod({myParametar})", BodyStyle = WebMessageBodyStyle.Bare
)]
void myMethod(string myParametar);
我這樣稱呼它:
http://localhost:1234/MyService.svc/jsonPS/myMethod(1)
,它說不準方法。 爲什麼?