i have an XML like this

<main>
  <reportPath>d:\reports</reportPath>
  <errorPath>D:\Error</errorPath>
  <project>D:\xyz.txt</project>
  <value />
</main>

here "value" is an empty node. using Xpath navigator, I am able to reach Value node, but not able update it. using something like :

XPathNavigator currentnavigator = navigator.SelectSingleNode("//*/value");

Can anyone give me some idea how to edit this node i.e. add value to it which can be a string path.

will get appended at the end ?

link|improve this question
sorry read <project>D:\xyz.txt<\project> – Saurabh Jha Sep 11 '11 at 6:29
you can edit your question by yourself. – svick Sep 11 '11 at 15:16
feedback

1 Answer

If your navigator is editable, you can just use SetValue():

currentnavigator.SetValue("somePath");

That being said, I would recommend you to use LINQ to XML instead, I find it much easier to use:

XDocument doc = …;
doc.Root.Element("value").Value = "somePath";
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.