有没有一种简单的方法可以从 XML 根元素中删除命名空间。我试过了
[XmlRootAttribute("MCP", Namespace = "", IsNullable = false)]
在可序列化的类上。但是没有用。仍然得到相同的结果。
样本类
[Serializable]
[XmlRootAttribute("MCP", Namespace = "", IsNullable = false)]
public class BINDRequest
{
public BINDRequest()
{
}
[XmlAttribute]
public string CLIENT_REQUEST_ID { get; set; }
public BINDRequestBody BIND { get; set; }
}
结果 xml
<?xml version="1.0" encoding="utf-8"?>
<MCP xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" CLIENT_REQUEST_ID="1">
<BIND CLIENT_ID="test" PASSWORD="test" />
</MCP>
我不明白在 XmlRootAttribute 中指定 namsespace 有什么用?