将参数传递给json webservice

时间:2016-07-02 11:10:36

标签: c# json wcf parameters out

我有一个Json WCF服务我的方法请求out参数如何从客户端传递out参数

[ServiceContract]
public interface ITestServices
{
    [OperationContract]
    [WebInvoke(BodyStyle = WebMessageBodyStyle.Wrapped, Method = "POST", UriTemplate = "GetPerson", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json)]
    Person GetPerson(out ResponseStatus ResponseStatus, int PersonID);
}

1 个答案:

答案 0 :(得分:0)

WCF提供了一个可以使用SOAP或REST Web服务的接口,它没有任何物理能力来处理参数。