FatAntelope.XNode.XNode C# (CSharp) 메소드

XNode() 공개 메소드

Constructor.
public XNode ( XmlNode node, XNode parent ) : System.Collections.Generic
node System.Xml.XmlNode The respective System.Xml.XmlNode instance that this XNode maps to from the original XmlDocument.
parent XNode The parent XNode of this node in the XML Hierarchy
리턴 System.Collections.Generic
        public XNode(XmlNode node, XNode parent)
        {
            this.XmlNode = node;
            this.Parent = parent;
            this.Attributes = Empty;
            this.Children = Empty;
            this.Elements = Empty;
            this.Texts = Empty;
        }