从 wcf 服务返回 xdocument
我怎样才能从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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。 XDocument 不实现 IXmlSerializable。 XElement 实现 IXmlSerialized,因此您可以通过 WCF 传输它。
您还可以传输字符串而不是 XDocument 并在本地解析它。
例如:
服务器:
客户端:
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 :
Client :
您还可以返回 XElement 对象。
You can also return an XElement object.