MessageBuffer.CreateNavigator Method   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new XPathNavigator object for navigating this object.
Overloads
| CreateNavigator() | Creates a new XPathNavigator object for navigating this object. This method cannot be inherited. | 
| CreateNavigator(Int32) | Creates a new XPathNavigator object for navigating this object, with the navigator positioned on the node specified. | 
| CreateNavigator(XmlSpace) | Creates a new XPathNavigator object for navigating this object, with the specified  | 
| CreateNavigator(Int32, XmlSpace) | Creates a new XPathNavigator object for navigating this object, with the navigator positioned on the specified node and  | 
Remarks
Use this method if you want to manipulate just a portion of the message copy.
CreateNavigator()
Creates a new XPathNavigator object for navigating this object. This method cannot be inherited.
public:
 virtual System::Xml::XPath::XPathNavigator ^ CreateNavigator();public System.Xml.XPath.XPathNavigator CreateNavigator();abstract member CreateNavigator : unit -> System.Xml.XPath.XPathNavigator
override this.CreateNavigator : unit -> System.Xml.XPath.XPathNavigatorPublic Function CreateNavigator () As XPathNavigatorReturns
An XPathNavigator object for navigating this object.
Implements
Remarks
Use this method if you want to manipulate just a portion of the message copy.
Applies to
CreateNavigator(Int32)
Creates a new XPathNavigator object for navigating this object, with the navigator positioned on the node specified.
public:
 System::Xml::XPath::XPathNavigator ^ CreateNavigator(int nodeQuota);public System.Xml.XPath.XPathNavigator CreateNavigator(int nodeQuota);member this.CreateNavigator : int -> System.Xml.XPath.XPathNavigatorPublic Function CreateNavigator (nodeQuota As Integer) As XPathNavigatorParameters
- nodeQuota
- Int32
The location you want the navigator to be positioned on initially.
Returns
An XPathNavigator object for navigating this object.
Remarks
Use this method if you want to manipulate just a portion of the message copy.
Applies to
CreateNavigator(XmlSpace)
Creates a new XPathNavigator object for navigating this object, with the specified xml:space scope.
public:
 System::Xml::XPath::XPathNavigator ^ CreateNavigator(System::Xml::XmlSpace space);public System.Xml.XPath.XPathNavigator CreateNavigator(System.Xml.XmlSpace space);member this.CreateNavigator : System.Xml.XmlSpace -> System.Xml.XPath.XPathNavigatorPublic Function CreateNavigator (space As XmlSpace) As XPathNavigatorParameters
Returns
An XPathNavigator object for navigating this object.
Remarks
Use this method if you want to manipulate just a portion of the message copy.
Applies to
CreateNavigator(Int32, XmlSpace)
Creates a new XPathNavigator object for navigating this object, with the navigator positioned on the specified node and xml:space scope.
public:
 System::Xml::XPath::XPathNavigator ^ CreateNavigator(int nodeQuota, System::Xml::XmlSpace space);public System.Xml.XPath.XPathNavigator CreateNavigator(int nodeQuota, System.Xml.XmlSpace space);member this.CreateNavigator : int * System.Xml.XmlSpace -> System.Xml.XPath.XPathNavigatorPublic Function CreateNavigator (nodeQuota As Integer, space As XmlSpace) As XPathNavigatorParameters
- nodeQuota
- Int32
The location you want the navigator to be positioned on initially.
Returns
An XPathNavigator object for navigating this object.
Remarks
Use this method if you want to manipulate just a portion of the message copy.