我有一个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);
}
答案 0 :(得分:0)
WCF提供了一个可以使用SOAP或REST Web服务的接口,它没有任何物理能力来处理参数。