I want to add attributes only when it is not exist.

link|improve this question

40% accept rate
feedback

3 Answers

Check out Insert XML Data using XPathNavigator. Specifically the section Inserting Attribute Nodes

link|improve this answer
but it doesn't check attribute exist or not – BreakHead Apr 26 '11 at 11:26
feedback

Use "HasAttributes" property on the Xpathnavigator object to check whether it has any attributes and then continue to do your operation. Hope this helps!!

link|improve this answer
I want to check for a particular attribute??/ – BreakHead Apr 26 '11 at 11:45
Try using GetAttribute method and based on its return value, u can add the new attribute, if it does not exist. – Archana Apr 26 '11 at 11:57
you can also try using MoveToFirstAttribute() and then get its name and value like: ` if (xPathNav.MoveToFirstAttribute()) { Console.WriteLine(xPathNav.Name + "=" + xPathNav.Value); }` – Archana Apr 27 '11 at 7:11
feedback

Check out: http://egeveke.blogspot.com/2006/09/xpathnavigator-missing-setattribute.html

Basically you use MoveToAttribute, testing if it was successful. If not, then it does not exist and you can create. Remember to either start with a clone of you navigator, or move back to the parent when you are successful.

if (nav.MoveToAttribute())
{
  // exists
  nav.MoveToParent();
} 
else
{
  nav.CreateAttribute(...);
} 
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.