如何在mono下返回多个值?

时间:2013-08-07 08:14:13

标签: .net json wcf rest mono

我正在构建RESTful WCF主机,但我不知道如何让它在mono下返回值。 下面的代码在.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);

主机

enter image description here

Fiddler POST(.net)

enter image description here

Fiddler POST(单声道)

enter image description here

例外(mono linux)

enter image description here

0 个答案:

没有答案