调用时的实体参数未在客户端上生成

发布于 2024-12-02 05:54:42 字数 365 浏览 0 评论 0原文

我有一个简单的 [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 技术交流群。

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

发布评论

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

评论(1

烟─花易冷 2024-12-09 05:54:42

使用 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

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