asp.net – Xdocument不打印声明

前端之家收集整理的这篇文章主要介绍了asp.net – Xdocument不打印声明前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用domainpeople.com API,并且我需要使用XML.

目前我有一个错误说“apiProtocol没有找到”我猜,那我的Xml文件是格式错误的.

发送的当前xml是:

<apiProtocol version="1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNameSpaceSchemaLocation="checkrequest.xsd">
  <checkRequest user="ifuzion" password="fish4gold121" reference="123456789">
    <domain name="google.com" /> 
  </checkRequest>
</apiProtocol>

显然<?xml?>部分不打印出来.

我的代码基本上类似于:

XDocument xDocument = new XDocument(
new XDeclaration("1.0","UTF-8","yes"),new XElement("Books"));

(我删除了我的代码简单的问题,但结构完全相似).

是否有任何原因XDocument不打印出<?xml?>部分的看来,使用XmlDocument它可以工作,但不是与XDocument …任何提示

解决方法

你如何打印XDocument的内容

.ToString()方法不包含xml头,但.Save()方法.

编辑:同样的答案给了here.

原文链接:https://www.f2er.com/aspnet/250538.html

猜你在找的asp.Net相关文章