如何在 XML-RPC 和 C# 中使用枚举?

发布于 2024-07-15 03:16:19 字数 333 浏览 7 评论 0原文

我正在 C# 中使用 Cook 计算 XMLRPC 框架。 我正在调用一个需要 int 的远程函数。 我想在客户端代码中使用枚举,而不是仅使用函数参数中硬编码的数字来调用函数。

代码编译成功,但在测试过程中抛出 XmlRpcUnsupportedTypeException。 该消息表明我的枚举无法映射到 XML-RPC 类型。 枚举如下:

public enum Codes : int
{
    Installed = 903,
}

我有一种感觉,有一些简单的东西我正在忽略,但无法将我的手指放在它上面,所以我在这里将我的蝙蝠信号照射到云中!

I'm using the Cook Computing XMLRPC framework in C#. I'm calling a remote function that expects an int. I want to use an enumeration in the client code instead of just calling the function with the digits hard-coded in the function parameters.

The code compiles successfully, but during testing an XmlRpcUnsupportedTypeException is throw. The message states that my enumeration cannot be mapped to an XML-RPC type. The enum is as follows:

public enum Codes : int
{
    Installed = 903,
}

I have a feeling there is something simple I am overlooking, but can't put my finger on it so I'm here shining my Bat signal into the clouds!

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

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

发布评论

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

评论(2

失眠症患者 2024-07-22 03:16:19

尝试显式转换?
(int)安装的

MSDN:

基础类型指定多少
存储空间分配给每个
枚举器。 然而,明确的强制转换
需要从枚举类型转换
为整数类型。 例如,
以下语句分配
枚举器 Sun 到变量
通过使用强制转换来转换类型 int
从枚举到整数:

int x = (int)Days.Sun;

tried explicit casting?
(int)Installed

MSDN:

The underlying type specifies how much
storage is allocated for each
enumerator. However, an explicit cast
is necessary to convert from enum type
to an integral type. For example, the
following statement assigns the
enumerator Sun to a variable of the
type int by using a cast to convert
from enum to int:

int x = (int)Days.Sun;

老娘不死你永远是小三 2024-07-22 03:16:19

您必须显式地将其转换为 int:

int code = Codes.Installed; // doesn't work.
int code = (int) Codes.Installed; // works.

You have to explicitly cast it to an int:

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