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

  • SEARCH
  • Home
  • 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 8264983
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T04:38:27+00:00 2026-06-08T04:38:27+00:00

How can I read the xml file having contents : <?xml version=1.0 encoding=utf-8?> <A>

  • 0

How can I read the xml file having contents :

<?xml version="1.0" encoding="utf-8"?>
<A>
   <B value="1">
     <Hash algo="SHA256" value="905C45B51B970434D7159641D9F6A88DC91E9C35030618A729C8E4BE174711AF" />
   </B>
   <B value="2">
     <Hash algo="SHA256" value="649721FF455E9B100E691A3857696350E14364029C34C9438AB3EA9665C91292" />
   </B>
   <B value="3">
     <Hash algo="SHA256" value="90FC91C4B82BF440FDAFECF3303DCA8FB9F2E9D7EFFAE394D8B74D0C7CD7DA10" />
   </B>
</A>

In the above xml file I want to read the values of all B tag’s “value” attribute values and the tag Hash “algorithm” or “value” attributes value.

Here is the code that I am using:

        var settings = new XmlReaderSettings();
        settings.IgnoreWhitespace = true;
        using (var stm = new FileStream(@"xmlFilePath", FileMode.Open, FileAccess.Read, FileShare.Read))
        using (var reader = XmlReader.Create(stm, settings))
        {
            while (reader.Read())
            {
                string srcFileHash=null;
                reader.ReadToDescendant("B");
                if (reader.NodeType == XmlNodeType.Element && reader.LocalName == "B")
                {
                    reader.MoveToAttribute("value");
                    var bValue=reader.Value;   // get the B tag attribute value.

                    //also want to read the <hash value=? and algo=?. but I dnt know how to get these hash tag attributes.
                }
            }
        }
  • 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-06-08T04:38:29+00:00Added an answer on June 8, 2026 at 4:38 am
    XDocument xDoc = XDocument.Parse(xml);
    var result = xDoc.Descendants("B")
        .Select(b => new
        {
            BValue = b.Attribute("value").Value,
            Alg = b.Element("Hash").Attribute("algo").Value,
            AlgValue = b.Element("Hash").Attribute("value").Value,
        })
        .ToArray();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi I can't understand this error I want read this XML file: <?xml version=1.0
I'm having some trouble using XmlReader to read an XML file. I can open
I'd like to read an xml file on a user's machine (which can be
I am learning JPA. I read about persistence.xml file. It can contain more that
I need to write XML data to an encrypted file. I can read/write encrypted
Having been googling for hours, I realize that users can use either xml file(orm.xml,
Hi I'm Having some trouble, i was wonder how to read an XML file
I am trying to read a utf-8 encoded xml file in python and I
How can I read XML in the attribute format into a ExtJS Store, where
Can someone please provide an example of how to store, and read xml data

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.