远程处理:在远程端填充集合

发布于 2024-09-27 23:29:01 字数 288 浏览 1 评论 0原文

我有一个简单的远程 API,其方法与此类似:

bool FillMyList(List<string> ListToFill)
{
    ListToFill.Add("something");
    ListToFill.Add("more stuff");
}

但是,当我通过代理对象调用它时,返回后,ListToFill 保持原样(在我的情况下为空)。

现在怎么办?我必须指出,我的其余方法被称为罚款 - 它们在一个方向上传递参数,并在另一个方向上返回值。

I have simple remoting API that has method similar to this:

bool FillMyList(List<string> ListToFill)
{
    ListToFill.Add("something");
    ListToFill.Add("more stuff");
}

But, when I call it through a proxy object, upon return, ListToFill stays as it was (in my case, empty).

What now? I must point out that rest of my methods are called fine - they pass parameters in one direction and have return value for the other.

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

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

发布评论

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

评论(1

幻想少年梦 2024-10-04 23:29:01

通常,您从 Remoting 调用中得到的只是返回值;通常,参数不会被编组。标记参数 ref 可能不会有帮助,但这可能取决于您如何进行远程处理。让函数返回列表本身而不是 bool 或包含两者的自定义对象应该可以解决这个问题。

All you typically get back from Remoting calls is the return value; the parameters are not marshalled across, usually. Marking the parameter ref probably won't help, but it may depend on how you are doing the remoting. Having the function return the list itself instead of the bool or a custom object that includes both, should solve it.

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