gpt4 book ai didi

c# - 有没有办法删除*仅* xmlns :xsd namespace when serializing a XML?

转载 作者:行者123 更新时间:2023-11-30 15:55:36 25 4
gpt4 key购买 nike

我已经使用 xsd2code++ 创建了一个序列化对象。它工作正常,但以下情况除外:

出于某种原因,我需要发送的 XML 需要有一些 namespace ,但不是 xsd namespace (即使,据我所知,列出它应该没有问题,但这不是我的决定)。我在生成的 c# 类中有以下代码:

[XmlNamespaceDeclarations]
public XmlSerializerNamespaces xmlns;

[XmlAttribute("schemaLocation", Namespace = XmlSchema.InstanceNamespace)]
public string xsiSchemaLocation = "http://www.sat.gob.mx/TimbreFiscalDigital http://www.sat.gob.mx/sitio_internet/cfd/TimbreFiscalDigital/TimbreFiscalDigitalv11.xsd";
public TimbreFiscalDigital()
{
this.versionField = "1.1";
this.xmlns = new XmlSerializerNamespaces();
this.xmlns.Add("tfd", "http://www.sat.gob.mx/TimbreFiscalDigital");
this.xmlns.Add("xsi", "http://www.w3.org/2001/XMLSchema-instance");
}

在类本身的属性中,我有以下内容:

[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://www.sat.gob.mx/TimbreFiscalDigital")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://www.sat.gob.mx/TimbreFiscalDigital", IsNullable = false)]

但 XML 包含 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 命名空间声明。

我在这里看到了关于如何完全删除用于序列化的命名空间的不同答案,但这不是我要找的,我只希望我设置的那些是唯一序列化的。

有什么方法可以删除 xsd,而不求助于自定义 xml 序列化器或类似的东西?我觉得可能有一些我可以设置的属性或选项(或者我设置不正确)会影响这一点,但我没有在对象的代码中看到任何对 xsd 的引用。我已经通过 XmlSerializer.Serialize() 直接调用序列化程序。

最佳答案

XmlNamespaceDeclarationsAttribute 不影响根元素的命名空间前缀的原因在其 documentation 中进行了解释,尽管不清楚。 :

Also note that the member to which the attribute is applied contains only the prefix-namespace pairs that belong to the XML element defined by the class. For example, in the following XML document, only the prefix pair "cal" is captured, but not the "x" prefix. To get that data, add a member with the XmlNamespaceDeclarationsAttribute to the class that represents the root element.

<?xml version="1.0"?>
<x:root xmlns:x="http://www.cohowinery.com/x/">
<x:select xmlns:cal="http://www.cohowinery.com/calendar/" path="cal:appointments/@cal:startTime" />
</x:root>

这意味着返回的前缀命名空间对将被添加到当前元素的属性中,并在序列化子元素(那些属于当前元素的元素)时使用——但将不影响当前元素本身的 namespace 前缀。为此,必须将 XmlNamespaceDeclarationsAttribute 成员添加到 parent —— 当然,根元素没有父元素。

在没有控制根元素的命名空间前缀的属性的情况下,必须使用其 XmlSerializer.Serialize(Writer, Object, XmlSerializerNamespaces) 之一手动调用 XmlSerializer过载。如果您使用不包含 XmlSerializerNamespacesSerialize() 重载,例如 XmlSerializer.Serialize(XmlWriter, Object) ,那么序列化程序将始终有帮助地向根元素添加一组默认 namespace ,包括:

  • 根元素本身需要的命名空间;
  • 标准的“xsd”和“xsi”命名空间;
  • 子节点需要的额外命名空间;
  • XmlNamespaceDeclarations 成员返回的其他命名空间。

这就是您看到的行为。

因此,以下扩展方法将根据需要序列化您的根对象:

public static partial class XmlSerializationHelper
{
public static string GetXml<T>(this T obj, XmlSerializer serializer = null, XmlSerializerNamespaces ns = null)
{
ns = ns ?? obj.GetXmlNamespaceDeclarations();
using (var textWriter = new StringWriter())
{
var settings = new XmlWriterSettings() { Indent = true }; // For cosmetic purposes.
using (var xmlWriter = XmlWriter.Create(textWriter, settings))
(serializer ?? new XmlSerializer(obj.GetType())).Serialize(xmlWriter, obj, ns);
return textWriter.ToString();
}
}

public static XmlSerializerNamespaces GetXmlNamespaceDeclarations<T>(this T obj)
{
if (obj == null)
return null;
var type = obj.GetType();
return type.GetFields()
.Where(f => Attribute.IsDefined(f, typeof(XmlNamespaceDeclarationsAttribute)))
.Select(f => f.GetValue(obj))
.Concat(type.GetProperties()
.Where(p => Attribute.IsDefined(p, typeof(XmlNamespaceDeclarationsAttribute)))
.Select(p => p.GetValue(obj, null)))
.OfType<XmlSerializerNamespaces>()
.SingleOrDefault();
}

public static XmlSerializerNamespaces With(this XmlSerializerNamespaces xmlns, string prefix, string ns)
{
if (xmlns == null)
throw new ArgumentNullException();
xmlns.Add(prefix, ns);
return xmlns;
}
}

然后,如果您按如下方式序列化您的类型:

var root = new TimbreFiscalDigital();
var xml = root.GetXml();

生成以下 XML:

<tfd:TimbreFiscalDigital xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sat.gob.mx/TimbreFiscalDigital http://www.sat.gob.mx/sitio_internet/cfd/TimbreFiscalDigital/TimbreFiscalDigitalv11.xsd" xmlns:tfd="http://www.sat.gob.mx/TimbreFiscalDigital">
<tfd:version>1.1</tfd:version>
</tfd:TimbreFiscalDigital>

样本 fiddle .

顺便说一句,如果 TimbreFiscalDigital.xmlns 返回的命名空间是固定的,并且您不需要在反序列化期间捕获它们,则可以将该字段替换为具有 [XmlNamespaceDeclarations] 的属性 应用,像这样:

[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://www.sat.gob.mx/TimbreFiscalDigital")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://www.sat.gob.mx/TimbreFiscalDigital", IsNullable = false)]
public class TimbreFiscalDigital
{
string versionField;

//[XmlAttribute]
public string version { get { return versionField; } set { versionField = value; } }

[XmlNamespaceDeclarations]
public XmlSerializerNamespaces Xmlns
{
get
{
return new XmlSerializerNamespaces()
.With("tfd", "http://www.sat.gob.mx/TimbreFiscalDigital")
.With("xsi", XmlSchema.InstanceNamespace);
}
set { /* Do nothing */ }
}

[XmlAttribute("schemaLocation", Namespace = XmlSchema.InstanceNamespace)]
public string xsiSchemaLocation = "http://www.sat.gob.mx/TimbreFiscalDigital http://www.sat.gob.mx/sitio_internet/cfd/TimbreFiscalDigital/TimbreFiscalDigitalv11.xsd";

public TimbreFiscalDigital()
{
this.versionField = "1.1";
}
}

该属性必须同时具有 getter 和 setter,但 setter 不能执行任何操作,而 getter 始终返回 XmlSerializerNamespaces 的新实例。通过这样做,您可以减少类的永久内存占用量。

样本 fiddle #2 .

关于c# - 有没有办法删除*仅* xmlns :xsd namespace when serializing a XML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48392917/

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