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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T06:14:14+00:00 2026-05-29T06:14:14+00:00

XDocument coordinates = XDocument.Load(http://feeds.feedburner.com/TechCrunch); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(DestFilePath); foreach (var coordinate in coordinates.Descendants(guid))

  • 0
XDocument coordinates = XDocument.Load("http://feeds.feedburner.com/TechCrunch");
System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(DestFilePath);

foreach (var coordinate in coordinates.Descendants("guid"))
                {
                    string Links = coordinate.Value;                 
                    StreamWriter1.WriteLine(Links + Environment.NewLine );
                }

StreamWriter1.Close();

Using this code for the above URL (http://feeds.feedburner.com/TechCrunch) i am able to obtain all the links but i also want to obtain <description> and <content:encoded> element values.

The problem is that i want to obtain <description> etc values along with their guid values so that i can store them in serially (in database).

Should i use LINQ of something for this purpose ?
But how please tell ?

  • 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-29T06:14:14+00:00Added an answer on May 29, 2026 at 6:14 am

    You should iterate over each “item” and retrieve its properties. Do not forget about the “content” namespace.

      XNamespace nsContent = "http://purl.org/rss/1.0/modules/content/";
      XDocument coordinates = XDocument.Load("http://feeds.feedburner.com/TechCrunch");
    
      foreach (var item in coordinates.Descendants("item"))
      {
              string link = item.Element("guid").Value;
              string description = item.Element("description").Value;
              string content = item.Element(nsContent + "encoded").Value;
    
      }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

XDocument coordinates = XDocument.Load(http://feeds.feedburner.com/TechCrunch); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(DestFile); XNamespace nsContent = http://purl.org/rss/1.0/modules/content/; foreach
XDocument coordinates = XDocument.Load(http://feeds.feedburner.com/TechCrunch); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(DestFile); XNamespace nsContent = http://purl.org/rss/1.0/modules/content/; string
I have the following XDocument: <SomeDoc Id=73 Protocol=rahrah xmlns=http://schemas.company.com/rah/rah2/2005/> <Prop1>11111</Prop1> <Prop2>77777</Prop2> <Prop3>88888</Prop3> </SomeDoc> And
I have a XDocument that looks like this: XDocument outputDocument = new XDocument( new
I have got this code: XDocument xdoc = XDocument.Load(URI); XElement root = xdoc.Element(forecast); //get
function moveto(coordinates) { step1 = coordinates[0]; step2 = coordinates[1]; var w = $(document).width(); var
I have an XDocument and have to remove a node and add the very
I have an XDocument object and the ToString() method returns XML without any indentation.
Hai I have An XDocument .All nodes in this document have an attribute UserId.
How can i return xdocument from wcf service??? what i need to do to

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.