我正在构建一个 RESTful WCF 主机,但我不知道如何让它在单声道下返回值。下面的代码在 .NET 下工作正常,但在 mono(v3.3.0) 下失败
有什么出路吗?谢谢!
界面
[WebInvoke(Method = "POST", UriTemplate="Test", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped)]
string Test(int n1, int n2, int n3, int n4, out int o1, out int o2, out int o3, out int o4);
主持人
提琴手 POST(.net)
提琴手 POST(单声道)
异常(单linux)