System.Xml.XPath.XPathNavigator.PrependChild C# (CSharp) Method

PrependChild() public method

public PrependChild ( string newChild ) : void
newChild string
return void
        public virtual void PrependChild(string newChild)
        {
            XmlReader reader = CreateContextReader(newChild, true);
            PrependChild(reader);
        }

Same methods

XPathNavigator::PrependChild ( ) : XmlWriter
XPathNavigator::PrependChild ( XPathNavigator newChild ) : void
XPathNavigator::PrependChild ( XmlReader newChild ) : void