vote up 1 vote down star
2

Hi All,

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");
flag
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 at 15:00

1 Answer

vote up 2 vote down check

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

elem.Attributes().FirstOrDefault(a=>a.Name.LocalName == "from");
link|flag
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

Your Answer

Get an OpenID
or

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