Link to home
Start Free TrialLog in
Avatar of kolobcreek
kolobcreek

asked on

Errors extending System.Xml.XmlNode

When I extend System.Xml.XmlNode I get the following error messages.

Any Ideas??

public class myNode : System.Xml.XmlNode {
     
     
}
'myNode' does not implement inherited abstract member 'System.Xml.XmlNode.CloneNode(bool)'
'myNode' does not implement inherited abstract member 'System.Xml.XmlNode.LocalName.get'
'myNode' does not implement inherited abstract member 'System.Xml.XmlNode.Name.get'
'myNode' does not implement inherited abstract member 'System.Xml.XmlNode.NodeType.get'
'myNode' does not implement inherited abstract member 'System.Xml.XmlNode.WriteContentTo(System.Xml.XmlWriter)'
'myNode' does not implement inherited abstract member 'System.Xml.XmlNode.WriteTo(System.Xml.XmlWriter)'
ASKER CERTIFIED SOLUTION
Avatar of Nebulus_
Nebulus_

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kolobcreek
kolobcreek

ASKER

Still having trouble overiding variabls ie.

does not implement inherited abstract member 'System.Xml.XmlNode.Name.get'
It's asking you to provide the "Name" property.
 
       public override string Name
       {
            get
            {
                return "The Name";
            }
        }