<bdo id='j8kIt'></bdo><ul id='j8kIt'></ul>
    <i id='j8kIt'><tr id='j8kIt'><dt id='j8kIt'><q id='j8kIt'><span id='j8kIt'><b id='j8kIt'><form id='j8kIt'><ins id='j8kIt'></ins><ul id='j8kIt'></ul><sub id='j8kIt'></sub></form><legend id='j8kIt'></legend><bdo id='j8kIt'><pre id='j8kIt'><center id='j8kIt'></center></pre></bdo></b><th id='j8kIt'></th></span></q></dt></tr></i><div id='j8kIt'><tfoot id='j8kIt'></tfoot><dl id='j8kIt'><fieldset id='j8kIt'></fieldset></dl></div>

      <small id='j8kIt'></small><noframes id='j8kIt'>

      <tfoot id='j8kIt'></tfoot><legend id='j8kIt'><style id='j8kIt'><dir id='j8kIt'><q id='j8kIt'></q></dir></style></legend>

      使用 DataContractSerializer 序列化没有命名空间的对象

      Serializing object with no namespaces using DataContractSerializer(使用 DataContractSerializer 序列化没有命名空间的对象)
      <tfoot id='m6bc3'></tfoot>
        <i id='m6bc3'><tr id='m6bc3'><dt id='m6bc3'><q id='m6bc3'><span id='m6bc3'><b id='m6bc3'><form id='m6bc3'><ins id='m6bc3'></ins><ul id='m6bc3'></ul><sub id='m6bc3'></sub></form><legend id='m6bc3'></legend><bdo id='m6bc3'><pre id='m6bc3'><center id='m6bc3'></center></pre></bdo></b><th id='m6bc3'></th></span></q></dt></tr></i><div id='m6bc3'><tfoot id='m6bc3'></tfoot><dl id='m6bc3'><fieldset id='m6bc3'></fieldset></dl></div>
        <legend id='m6bc3'><style id='m6bc3'><dir id='m6bc3'><q id='m6bc3'></q></dir></style></legend>

            • <bdo id='m6bc3'></bdo><ul id='m6bc3'></ul>

              • <small id='m6bc3'></small><noframes id='m6bc3'>

                  <tbody id='m6bc3'></tbody>
              • 本文介绍了使用 DataContractSerializer 序列化没有命名空间的对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如何从使用 DataContractSerializer 序列化的对象的 XML 表示中删除 XML 命名空间?

                How do I remove XML namespaces from an object's XML representation serialized using DataContractSerializer?

                该对象需要序列化为一个非常简单的输出 XML.

                That object needs to be serialized to a very simple output XML.

                • 最新 &最好的 - 使用 .Net 4 beta 2
                • 永远不需要反序列化对象.
                • XML 不应有任何 xmlns:...命名空间引用
                • 需要支持 Exception 和 ISubObject 的任何子类型.
                • 更改原始对象将非常困难.

                对象:

                 [Serializable] 
                 class MyObj
                 {
                     string str;
                     Exception ex;
                     ISubObject subobj;
                 } 
                

                需要序列化成:

                <xml>
                  <str>...</str>
                  <ex i:nil="true" />
                  <subobj i:type="Abc">
                     <AbcProp1>...</AbcProp1>
                     <AbcProp2>...</AbcProp2>
                  </subobj>
                </xml>
                

                我使用了这个代码:

                private static string ObjectToXmlString(object obj)
                {
                    if (obj == null) throw new ArgumentNullException("obj");
                
                    var serializer =
                        new DataContractSerializer(
                            obj.GetType(), null, Int32.MaxValue, false, false, null,
                            new AllowAllContractResolver());
                
                    var sb = new StringBuilder();
                    using (var xw = XmlWriter.Create(sb, new XmlWriterSettings
                    {
                        OmitXmlDeclaration = true,
                        NamespaceHandling = NamespaceHandling.OmitDuplicates,
                        Indent = true
                    }))
                    {
                        serializer.WriteObject(xw, obj);
                        xw.Flush();
                
                        return sb.ToString();
                    }
                }
                

                来自 这篇文章我采用了一个DataContractResolver,因此不必声明子类型:

                From this article I adopted a DataContractResolver so that no subtypes have to be declared:

                public class AllowAllContractResolver : DataContractResolver
                {
                    public override bool TryResolveType(Type dataContractType, Type declaredType, DataContractResolver knownTypeResolver, out XmlDictionaryString typeName, out XmlDictionaryString typeNamespace)
                    {
                        if (!knownTypeResolver.TryResolveType(dataContractType, declaredType, null, out typeName, out typeNamespace))
                        {
                            var dictionary = new XmlDictionary();
                            typeName = dictionary.Add(dataContractType.FullName);
                            typeNamespace = dictionary.Add(dataContractType.Assembly.FullName);
                        }
                        return true;
                    }
                
                    public override Type ResolveName(string typeName, string typeNamespace, Type declaredType, DataContractResolver knownTypeResolver)
                    {
                        return knownTypeResolver.ResolveName(typeName, typeNamespace, declaredType, null) ?? Type.GetType(typeName + ", " + typeNamespace);
                    }
                }
                

                推荐答案

                你需要标记你想要序列化的类:

                You need to mark the classes you want to serialize with:

                [DataContract(Namespace="")]
                

                在这种情况下,数据协定序列化程序不会为您的序列化对象使用任何命名空间.

                In that case, the data contract serializer will not use any namespace for your serialized objects.

                马克

                这篇关于使用 DataContractSerializer 序列化没有命名空间的对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                C# namespace alias - what#39;s the point?(C# 命名空间别名 - 有什么意义?)
                Using Xpath With Default Namespace in C#(在 C# 中使用具有默认命名空间的 Xpath)
                IBM.Data.DB2.Core connection problems(IBM.Data.DB2.Core 连接问题)
                Datetime field overflow with IBM Data Server Client v9.7fp5(IBM Data Server Client v9.7fp5 的日期时间字段溢出)
                Using entity Framework with .NET Core and DB2(将实体框架与 .NET Core 和 DB2 结合使用)
                IBM .NET Data Provider Connection String issue with Library List(库列表的 IBM .NET 数据提供程序连接字符串问题)
                  <bdo id='R59rm'></bdo><ul id='R59rm'></ul>

                  1. <i id='R59rm'><tr id='R59rm'><dt id='R59rm'><q id='R59rm'><span id='R59rm'><b id='R59rm'><form id='R59rm'><ins id='R59rm'></ins><ul id='R59rm'></ul><sub id='R59rm'></sub></form><legend id='R59rm'></legend><bdo id='R59rm'><pre id='R59rm'><center id='R59rm'></center></pre></bdo></b><th id='R59rm'></th></span></q></dt></tr></i><div id='R59rm'><tfoot id='R59rm'></tfoot><dl id='R59rm'><fieldset id='R59rm'></fieldset></dl></div>
                    <legend id='R59rm'><style id='R59rm'><dir id='R59rm'><q id='R59rm'></q></dir></style></legend>

                      <small id='R59rm'></small><noframes id='R59rm'>

                          <tfoot id='R59rm'></tfoot>

                            <tbody id='R59rm'></tbody>