C# XML 去xmlns:xsd和xmlns:xsi属性

2021-04-20 17:26

阅读:652

标签:enum   sharp   sel   getchild   getattr   att   aced   ret   gate   

       public static XElement WithoutNamespaces(this XElement element)
        {
            if (element == null) return null;

            #region delegates:

            Func getChildNode = e => (e.NodeType == XmlNodeType.Element) ? (e as XElement).WithoutNamespaces() : e;

            Func> getAttributes = e => (e.HasAttributes) ?
                e.Attributes()
                    .Where(a => !a.IsNamespaceDeclaration)
                    .Select(a => new XAttribute(a.Name.LocalName, a.Value))
                :
                Enumerable.Empty();

            #endregion

            return new XElement(element.Name.LocalName,
                element.Nodes().Select(getChildNode),
                getAttributes(element));
        }

  调用

 var xDoc = XDocument.Parse(xml);
 var xRoot = xDoc.Root.WithoutNamespaces();

  

C# XML 去xmlns:xsd和xmlns:xsi属性

标签:enum   sharp   sel   getchild   getattr   att   aced   ret   gate   

原文地址:https://www.cnblogs.com/lonelyxmas/p/8615018.html


评论


亲,登录后才可以留言!