如何使用 XML-RPC.NET 返回多个参数?

发布于 2024-11-28 08:40:59 字数 147 浏览 2 评论 0原文

由于规范,我正在 XML RPC 中的 ASP.NET 自定义服务器协议中实现。我使用 XML-RPC.NET 库。

我陷入了一种方法的困境,因为自定义协议的规范表明方法 X 有两个输出参数(整数和布尔值)。如何使用 C# 和 XML-RPC.NET 做到这一点?

I am implementing in ASP.NET custom server protocol in XML RPC due to specification. I use library XML-RPC.NET.

I got stuck on one method, because the specification of the custom protocol says that the method X has two output parameters (integer and boolen). How can I do that using C# and XML-RPC.NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

层林尽染 2024-12-05 08:41:00

很久之后我才回答我自己的问题。有两种可能性。

  1. 返回特殊类型 XmlRpcStruct (http://xmlrpc.sourceforge.net/javadoc/redstone/xmlrpc/XmlRpcStruct.html)

  2. 返回具有参数名称等属性名称的结构。

I answer my own question after long time. There are two possibilities.

  1. return special type XmlRpcStruct (http://xmlrpc.sourceforge.net/javadoc/redstone/xmlrpc/XmlRpcStruct.html)

  2. return Struct which have properties names like param names.

水晶透心 2024-12-05 08:41:00

XML-RPC 响应只有一个

。返回值。要返回两个值,如您的情况,返回值必须是结构体或数组值。

An XML-RPC response only has a single <param> return value. To return two values, as in your case, the return value would have to be a struct or array value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文