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 6852123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:20:00+00:00 2026-05-27T01:20:00+00:00

Imagine a xml file like this: <Document> <Tests> <Test> <Name>A</Name> <SubTest> <Test> <Name>B</Name> <Value>100</Value>

  • 0

Imagine a xml file like this:

<Document>
   <Tests>
      <Test>
          <Name>A</Name>
          <SubTest>
              <Test>
                 <Name>B</Name>
                 <Value>100</Value>
              </Test>
           </SubTest>
       </Test>
      <Test>
          <Name>C</Name>
          <SubTest>
              <Test>
                 <Name>D</Name>
                 <Value>200</Value>
              </Test>
           </SubTest>
       </Test>
    </Tests> 
</Document>

I use a method to access the B value, but I need to get name A as well, but I only now that value B exist in my XML file (doc is XmlDocument):

public class TestData
{
public string Parent {get;set;}
public string Name {get; set;}
public int Value {get;set;} 
}

private TestData GetResult(string name)
{
   TestData data = new TestData();
   data.Name = name;
   data.Value = 
   int.Parse(doc.SelectSingleNode("Document/Tests/Test/SubTest/Test[Name = '" + name + "']/Value").InnerText);

   data.Parent = null; //How can I get string A using the above xpath   

   return data;
}

So, the question is, how can I access A in the above method?

  • 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-27T01:20:01+00:00Added an answer on May 27, 2026 at 1:20 am

    You can use this XPath:

    Document/Tests/Test[SubTest/Test/Name = 'B']/Name
    

    or:

    var nodeTest = 
        doc.SelectSingleNode("Document/Tests/Test[SubTest/Test/Name = 'B']");
    
    var name = nodeTest.SelectSingleNode("Name").InnerText;
    var value = nodeTest.SelectSingleNode("SubTest/Test/Value").InnerText;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a XML file like this: <Document> <Tests> <Test> <Name>A</Name> <Value>1</Value> </Test> <Test>
Imagine this XML file (sorry for sick example!!) <DOC> <Test> <Name>1 vs 100 Pre
I imagine to use XML serialization like this: class Foo { public Foo (string
Imagine this as the code from build.xml: <project name=test project> <target name=first> <echo>first</echo> </target>
Imagine I have the folling XML file: <a>before<b>middle</b>after</a> I want to convert it into
This XML file contained archived news stories for all of last year. I was
Imagine the following scenario: some xml file is downloaded from server and stored on
Imagine I have a map shape file (.shp) or osm xml, I'm able to
imagine an xml file with 5000 sets of data. While parsing , i NSLog
Imagine the UI passes back an XMl node as such: <properties> <type> Source </type>

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.