System.Xml.XPath.XPathNavigator.PrependChild C# (CSharp) Метод

PrependChild() публичный Метод

public PrependChild ( XPathNavigator newChild ) : void
newChild XPathNavigator
Результат void
        public virtual void PrependChild(XPathNavigator newChild)
        {
            if (newChild == null)
            {
                throw new ArgumentNullException(nameof(newChild));
            }
            if (!IsValidChildType(newChild.NodeType))
            {
                throw new InvalidOperationException(SR.Xpn_BadPosition);
            }
            XmlReader reader = newChild.CreateReader();
            PrependChild(reader);
        }

Same methods

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