System::Xml::XPath::XPathNavigator::InsertBefore méthode

XPathNavigator::InsertBefore() method

Retourne un objet XmlWriter utilisé pour créer un nouveau nœud frère avant le nœud actuellement sélectionné.

virtual SharedPtr<XmlWriter> System::Xml::XPath::XPathNavigator::InsertBefore()

ReturnValue

Un objet XmlWriter utilisé pour créer un nouveau nœud frère avant le nœud actuellement sélectionné.

Voir aussi

XPathNavigator::InsertBefore(SharedPtr<XmlReader>) method

Crée un nouveau nœud frère avant le nœud actuellement sélectionné en utilisant le contenu XML de l’objet XmlReader spécifié.

virtual void System::Xml::XPath::XPathNavigator::InsertBefore(SharedPtr<XmlReader> newSibling)
ParamètreTypeDescription
newSiblingSharedPtr<XmlReader>Un objet XmlReader positionné sur les données XML du nouveau nœud frère.

Voir aussi

XPathNavigator::InsertBefore(SharedPtr<XPathNavigator>) method

Crée un nouveau nœud frère avant le nœud actuellement sélectionné en utilisant les nœuds du XPathNavigator spécifié.

virtual void System::Xml::XPath::XPathNavigator::InsertBefore(SharedPtr<XPathNavigator> newSibling)
ParamètreTypeDescription
newSiblingSharedPtr<XPathNavigator>Un objet XPathNavigator positionné sur le nœud à ajouter comme nouveau nœud frère.

Voir aussi

XPathNavigator::InsertBefore(String) method

Crée un nouveau nœud frère avant le nœud actuellement sélectionné en utilisant la chaîne XML spécifiée.

virtual void System::Xml::XPath::XPathNavigator::InsertBefore(String newSibling)
ParamètreTypeDescription
newSiblingStringLa chaîne de données XML pour le nouveau nœud frère.

Voir aussi