gpt4 book ai didi

wcf - 从 wcf 服务返回 xdocument

转载 作者:行者123 更新时间:2023-12-04 14:36:14 25 4
gpt4 key购买 nike

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

最佳答案

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

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

前任 :

服务器 :

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

// Do stuff

return myXDocument.ToString();
}

客户 :
XDocument doc = XDocument.Parse(myWebService.DoSomething());

关于wcf - 从 wcf 服务返回 xdocument,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2406761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com