[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "getsystemtime", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.WrappedResponse)]
System.Net.Http.HttpResponseMessage getsystemtime();
WCF REST POST 方法可以没有参数吗?;用HTTP POST 不能成功,请帮忙,谢谢。
肯定可以三。
[OperationContract]
[WebInvoke(UriTemplate = "player/app/version", ResponseFormat = WebMessageFormat.Json, Method = "GET")]
[Description("Cache.获取指定设备的最新数据")]
public string GetVersion()
{
return "1.0.0.2";
}
看样子重点在这 Method = "GET",谢谢。
string 类型的返回会转义,有办法不转义吗?
去掉RequestFormat = WebMessageFormat.Json
试试