ASMX WebService 返回 XmlNode 而不是自定义对象

发布于 2024-12-22 05:03:56 字数 695 浏览 1 评论 0原文

这是 Web 服务:

自定义类:

public class A
{
    public A()
    {
    }
    public B prop { get; set; } 
}

public class B
{
    public B()
    {
    }
    public A prop { get; set; }
}

Webmethod:

[WebMethod]
[XmlInclude(typeof(A))]
public object Test()
{
    A a = new A();
    a.prop = new B();

    return a;
}

这是客户端:

Service ws = new Service();
var response = ws.Test();

那么,为什么 Web 服务返回 XmlNode 列表而不是 A 类?怎么解决呢?

PS:如果我评论 public A prop { get;放; } 行,它有效

Here is the webservice:

Custom classes:

public class A
{
    public A()
    {
    }
    public B prop { get; set; } 
}

public class B
{
    public B()
    {
    }
    public A prop { get; set; }
}

Webmethod:

[WebMethod]
[XmlInclude(typeof(A))]
public object Test()
{
    A a = new A();
    a.prop = new B();

    return a;
}

Here is the client side:

Service ws = new Service();
var response = ws.Test();

So, why is the webservice returning XmlNode list instead of class A? How to solve it?

PS: if I comment public A prop { get; set; } line, it works

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

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

发布评论

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

评论(1

云雾 2024-12-29 05:03:57

好的,找到了解决方案:

我可以使用包装器,如下所示:

或者我使用 [return:] 属性,如下所示:

[WebMethod]
[return: XmlElement(typeof(A))]
public object Test()
{
    A a = new A();
    a.prop = new B();

    return a;
}

关于属性目标:

Ok, found the solution:

I could use a wrapper, like this:

Or I use the [return:] attribute, like this:

[WebMethod]
[return: XmlElement(typeof(A))]
public object Test()
{
    A a = new A();
    a.prop = new B();

    return a;
}

About attribute targets:

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