Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6914307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:19:50+00:00 2026-05-27T09:19:50+00:00

I tried to get the attributes from XNode I use the following code XDocument

  • 0

I tried to get the attributes from XNode I use the following code

        XDocument document = XDocument.Load(FilePath);

        var Elements = from p in document.Descendants(modality) select p.Elements("Key_Part");

        //var Attriputess = from p in document.Descendants(modality) select p.Attributes();    
        foreach (var Element in Elements)
        {

            foreach (var node in Element.Nodes())
            {

                XmlReader reader = node.CreateReader();



                string a = reader.GetAttribute("Type"); 


            }



        }

a always equal null
the XML type like this

<ShortcutList Version="8">
  <Doctor>
    <Key_Part >
        <Key1 Name = "XX" Type= "XXXXXXXXX" > rrrr</Key1>
        <Key2 Name = "XasfsaX" Type= "XXXXsafasfXXXXX" > rrsfsfrr</Key1>
    </Key_Part>

I want to get Key1 , Key2 attributes and value

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T09:19:51+00:00Added an answer on May 27, 2026 at 9:19 am

    I must say I’ve fixed XML you’ve provided before got working query below. So you’ve not closed two last tags and you’ve closed Key2 by </Key1> tag what is wrong XML.

    Try out following, this will return list of entries (one per key) where each entry of anonymous type with properties: Name, Value, Type

    var keys = xdoc.Descendants("ShortcutList")
                   .Descendants("Doctor")
                   .Descendants("Key_Part")
                   .DescendantNodes()
                   .OfType<XElement>()
                   .Where(d => d.Name.LocalName.Contains("Key"))
                   .Select(e => new {
                                     Value = e.Value, 
                                     Name = e.Attribute("Name").Value, 
                                     Type = e.Attribute("Type").Value
                                    })
                  .ToList();
    

    EDIT: Fixed XML

    <ShortcutList Version="8">
      <Doctor>
        <Key_Part >
            <Key1 Name = "XX" Type= "XXXXXXXXX" > rrrr</Key1>
            <Key2 Name = "XasfsaX" Type= "XXXXsafasfXXXXX" > rrsfsfrr</Key2>
        </Key_Part>
    </Doctor>
    </ShortcutList>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I tried the following code to get an alert upon closing a browser window:
I want to get a label's attributes from self so I tried: UILabel *label
I tried many things but I always get cannot convert string to membershipuser from
How can I get the session from within a command object? I have tried:
From the MusicBrainz REST service, I get the following xml: <artist-list offset=0 count=59> <artist
I need to copy from input document to output document all attributes but one.
I'm trying to get all of the attributes and node values from XML in
I'm loading properties attributes from a .properties file using Spring as follows: file: elements.properties
I am trying to extract values from a string, I have tried to get
Im trying to figure out how i would get attributes/propertys from an object. locations.rb

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.