I’m using the SyndicationFeed class to consume some rss feeds. I am wondering how to get the content:encoded node of an RSS feed. This is t
SyndicationFeed
content:encoded
Try this :
StringBuilder sb = new StringBuilder(); foreach (SyndicationElementExtension extension in item.ElementExtensions) { XElement ele = extension.GetObject(); if (ele.Name.LocalName == "encoded" && ele.Name.Namespace.ToString().Contains("content")) { sb.Append(ele.Value + ""); } }