从 wcf 服务返回 xdocument

发布于 2024-08-24 08:14:26 字数 64 浏览 3 评论 0原文

我怎样才能从wcf服务返回xdocument???我需要做什么才能让wxf服务的方法返回xdocument的对象?

How can i return xdocument from wcf service??? what i need to do to let wxf service's method return a object of xdocument?

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

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

发布评论

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

评论(2

悟红尘 2024-08-31 08:14:26

你不能。 XDocument 不实现 IXmlSerializable。 XElement 实现 IXmlSerialized,因此您可以通过 WCF 传输它。

您还可以传输字符串而不是 XDocument 并在本地解析它。

例如:

服务器:

public string DoSomething()
{
    XDocument myXDocument = new XDocument();

    // Do stuff

    return myXDocument.ToString();
}

客户端:

XDocument doc = XDocument.Parse(myWebService.DoSomething());

You can't. XDocument does not implements IXmlSerializable. XElement implement IXmlSerializable so you can transfer it through WCF.

You can also transfer a string instead of the XDocument and parse it locally.

Ex :

Server :

public string DoSomething()
{
    XDocument myXDocument = new XDocument();

    // Do stuff

    return myXDocument.ToString();
}

Client :

XDocument doc = XDocument.Parse(myWebService.DoSomething());
怀念你的温柔 2024-08-31 08:14:26

您还可以返回 XElement 对象。

    public XElement DoSomething()
    {
        XDocument myXDocument = new XDocument();

        //  Load the XDocument.

        return myXDocument.Root;
    }

You can also return an XElement object.

    public XElement DoSomething()
    {
        XDocument myXDocument = new XDocument();

        //  Load the XDocument.

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