Xml.XPathNavigator Property
.NET Framework 3.0
Gets or sets a cursor model for navigating and editing the XML data associated with the Xml control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: property XPathNavigator^ XPathNavigator { XPathNavigator^ get (); void set (XPathNavigator^ value); }
/** @property */ public XPathNavigator get_XPathNavigator () /** @property */ public void set_XPathNavigator (XPathNavigator value)
public function get XPathNavigator () : XPathNavigator public function set XPathNavigator (value : XPathNavigator)
Not applicable.
Property Value
An XPathNavigator object.This property can be used to associate an XPathNavigator object with the Xml control.
An XPathNavigator object is created from a class that implements the IXPathNavigable interface, such as the XPathDocument and XmlDocument classes. XPathNavigator objects created by XPathDocument objects are read-only, and XPathNavigator objects created by XmlDocument objects can be edited. An XPathNavigator object's read-only or editable status is determined using the CanEdit property of the XPathNavigator class.
Community Additions
ADD
Show: