调用时的实体参数未在客户端上生成
我有一个简单的 [Invoke] 方法,它有一个类作为包装器,请参见下文。问题是 FirstOne 属性没有显示在客户端的 ComplexObject 中。
我可以通过将 FirstOne 属性设置为 Invoke 方法的属性来解决此问题,并且效果很好。
什么会导致客户端上不生成此内容?
public class MyRequest
{
public ParentEntity FirstOne { get; set; }
public int SecondOne { get; set; }
}
[Invoke]
public void DoIt(MyRequest req)
{
// blah
}
I have a simple [Invoke] method that has a class as a wrapper, see below. The problem is the FirstOne property does not show up in the ComplexObject on the client-side.
I can work around this by making the FirstOne property a property of the Invoke method and it works fine.
What would cause this to not generate on the client?
public class MyRequest
{
public ParentEntity FirstOne { get; set; }
public int SecondOne { get; set; }
}
[Invoke]
public void DoIt(MyRequest req)
{
// blah
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Invoke 语句时,只能使用简单类型(int、double、float 等)。使用 Invoke 命令时不允许使用复杂类型。
请参阅 此处 Colin Blair 的回复
When using an Invoke statement, you can only use simple types (int, double, float, etc.) Complex types are not allowed when using the Invoke command.
See Colin Blair response here