Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

part of xml:

<section name="Header">
  <placeholder name="HeaderPane"></placeholder>
</section>
<section name="Middle" split="20">  
  <placeholder name="ContentLeft" ></placeholder>
  <placeholder name="ContentMiddle"></placeholder>
  <placeholder name="ContentRight"></placeholder>     
</section>
<section name="Bottom">
  <placeholder name="BottomPane"></placeholder>
</section>

I want to check in each node and if attribute split exist try to assign attribute value in variable. inside a loop .i try

      foreach (XmlNode xNode in nodeListName)
      {
         if(xNode.ParentNode.Attributes["split"].Value != "")
        {
             parentSplit = xNode.ParentNode.Attributes["split"].Value;
        }
      }

But i m wrong.if condition check only value not existence of attributes.How should i check the existence of attributes.

share|improve this question

3 Answers

up vote 3 down vote accepted

You can actually index directly into the Attributes collection (if you are using C# not VB):

foreach (XmlNode xNode in nodeListName)
{
  if (xNode.ParentNode.Attributes["split"] != null)
  {
     parentSplit = xNode.ParentNode.Attributes["split"].Value;
  }
}
share|improve this answer
Thanks a lot.Exactly i got what i want.Thanks a lot. – Shree Aug 25 '11 at 8:15

EDIT

Disregard - you can't use ItemOf (that's what I get for typing before I test). I'd strikethrough the text if I could figure out how...or maybe I'll simply delete the answer, since it was ultimately wrong and useless.

END EDIT

You can use the ItemOf(string) property in the XmlAttributesCollection to see if the attribute exists. It returns null if it's not found.

foreach (XmlNode xNode in nodeListName)
{
    if (xNode.ParentNode.Attributes.ItemOf["split"] != null)
    {
         parentSplit = xNode.ParentNode.Attributes["split"].Value;
    }
}

XmlAttributeCollection.ItemOf Property (String)

share|improve this answer
i mean check attributes split exist. if attributes exist assign attribute value in variable.Thanks. – Shree Aug 25 '11 at 8:00
its not work. there is not any ItemOf.SorryD:) – Shree Aug 25 '11 at 8:04
1  
@Shree - the code above will check to see if the attribute "split" exists, if it does, if will assign the value of the attribute to parentSplit. Note that if you have more than one XmlNode in nodeListName that has a ParentNode with a "split" attribute, the last one in the list will be assigned to parentSplit, overwriting previous ones (if any). – Tim Aug 25 '11 at 8:05
ItemOf actually refers to a direct index into the Attribute collection. – Paul Aug 25 '11 at 8:08
ItemOf is the VB way of interacting with this. Indexing directly into the collection is the C# method. – Paul Aug 25 '11 at 8:16
show 3 more comments

You can use Linq-XML,

XDocument doc = XDocument.Load(file);

 var result = (from ele in doc.Descendants("section")
                  select ele).ToList();

  foreach (var t in result)
    {
        if (t.Attributes("split").Count() != 0)
          {
              //Exist
          }

        // Suggestion from @UrbanEsc
        if(t.Attributes("split").Any()) 
         {

         }
    }

OR

 XDocument doc = XDocument.Load(file);

 var result = (from ele in doc.Descendants("section").Attributes("split")
                     select ele).ToList();

 foreach (var t in result)
    {
           // Response.Write("<br/>" +  t.Value);
    }
share|improve this answer
1  
+1 for Linq to XML. Instead of Count() != 0 you could use Any() – UrbanEsc Aug 25 '11 at 8:13
Thanks @UrbanEsc. I've edited. – AVD Aug 25 '11 at 8:16
@UrbanEsc - just out of curiousity, is there anything gained by using Any() rather than Count()? – Tim Aug 25 '11 at 8:24
Check this SO topic stackoverflow.com/questions/305092/… – UrbanEsc Aug 25 '11 at 8:36
@UrbanEsc - Thanks :) – Tim Aug 25 '11 at 9:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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