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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:53:24+00:00 2026-05-27T14:53:24+00:00

How to use IN(,,,) with xmlreader to get specific nodes. private static IEnumerable<DayNode> ReadDayNodes(string

  • 0

How to use IN(,,,) with xmlreader to get specific nodes.

private static IEnumerable<DayNode> ReadDayNodes(string filePath)
        {
            using (FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.Read))
            using (XmlReader xrdr = new XmlTextReader(fs))
                while (xrdr.Read())
                    if (xrdr.NodeType == XmlNodeType.Element && xrdr.LocalName == "day")
                        yield return new DayNode(xrdr.GetAttribute("name"), xrdr.GetAttribute("short"), xrdr.GetAttribute("day"));
        }

If i have list of string.
like this :

List<string> names = new new List<string>();

and i wanna to get only the nodes which name in the previous list .How to that?

  • 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-27T14:53:25+00:00Added an answer on May 27, 2026 at 2:53 pm

    Do you mean, where the element’s local-name isn’t necessary “day”, but rather is in the list?

    if(xrdr.NodeType == XmlNodeType.Element && names.Contains(xrdr.LocalName))
    

    Edit following on comments:

    if (xrdr.NodeType == XmlNodeType.Element && xrdr.LocalName == "day")
      foreach(string localName in names)
      {
        string attVal = xrdr.GetAttribute(localName);
        if(attVal != null)
        //we could just yield return attVal, but presuming we want to know which attribute it was on:
         yield return Tuple.Create(localName, attVal);
      }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been parsing xml content using the xmlreader and cannot use the xml
When I use XmlReader to parse an XML file, I get different results depending
If I have an xmlreader instance how can I use it to read its
use Rack::Static, :urls => ['/stylesheets', '/images'], :root => 'public' run proc { |env| [200,
I am new in LINQtoXML. I want to use XElement.Load() Method. but the compiler
When I use XmlReader.ReadOuterXml(), elements are separated by \n instead of \r\n. So, for
I'm trying to use C#'s XmlReader on a large series of XML files, they
I tried to get the attributes from XNode I use the following code XDocument
In order to get XML data from a server repeatedly, I'm attempting to use
'''use Jython''' import shutil print dir(shutil) There is no, shutil.move, how does one move

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.