Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            PomXmlElement other = obj as PomXmlElement;

            if (other == null)
            {
                return(false);
            }
            return(other.Element == Element);
        }
Ejemplo n.º 2
0
 public void AddElement(PomXmlElement element)
 {
     _elem.Add(element._elem);
 }
Ejemplo n.º 3
0
 protected XmlDocumentBase(XDocument xdoc)
 {
     _xmlDoc = xdoc;
     _root   = new PomXmlElement(this, xdoc.Root);
 }