远程处理:在远程端填充集合
我有一个简单的远程 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您从 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 thebool
or a custom object that includes both, should solve it.