up vote 1 down vote favorite
2
share [g+] share [fb]

I need to be able get a single specific attribute from an element with a specific local name but any namespace (if you are familiar with XMPP you will understand why). Apart from writing my own (enumerator or single select) extension methods, any ideas?

I have the following, but I don't like it at all:

        XAttribute from = (from c in elem.Attributes()
                           where c.Name.LocalName == "from"
                           select c).FirstOrDefault<XAttribute>();

        XAttribute to = (from c in elem.Attributes()
                         where c.Name.LocalName == "to"
                         select c).FirstOrDefault<XAttribute>();

edit: would like something like:

        string val = (string)elem.Attribute("{*}to");

solution:

        XAttribute from = elem.Attributes()
            .FirstOrDefault(a => a.Name.LocalName == "from");

        XAttribute to = elem.Attributes()
            .FirstOrDefault(a => a.Name.LocalName == "to");
link|improve this question
Aren't most of the attributes in XMPP in the null namespace? We hardly ever prefix, and they don't automatically pick up the namespace of the element they are on. – Joe Hildebrand Nov 18 '08 at 6:05
@Joe, the main problem I have is "jabber:server", "jabber:client" and so on. – Jonathan C Dickinson Jan 15 '09 at 15:00
feedback

1 Answer

up vote 3 down vote accepted

If you don't like the syntax, you can use this one;

elem.Attributes().FirstOrDefault(a=>a.Name.LocalName == "from");
link|improve this answer
sweet, that is perfect!!! – Jonathan C Dickinson Nov 17 '08 at 9:05
yes, I like it too! ;) – yapiskan Nov 17 '08 at 9:08
by the way, for completeness, it should be a=>a.Name.LocalName == "from". – Jonathan C Dickinson Nov 17 '08 at 9:10
+1. Query expressions are nice when they're doing complicated things, but when there are just one or two operations, the "dot notation" is indeed simpler. – Jon Skeet Nov 17 '08 at 9:10
@Jonathan - I've changed it. – yapiskan Nov 17 '08 at 9:20
feedback

Your Answer

 
or
required, but never shown

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