4 writes to Content
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
313result.Content = ReadContentFrom(reader, result);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
484result.Content = result.Summary;
System\ServiceModel\Syndication\SyndicationItem.cs (2)
42Content = content; 61Content = source.Content?.Clone();
5 references to Content
System.ServiceModel.Syndication (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1193WriteContentTo(dictWriter, Atom10Constants.ContentTag, item.Content);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (3)
482if (result.Content == null && !readAlternateLink) 1066summary = (item.Content as TextSyndicationContent); 1151Atom10FeedFormatter.WriteContentTo(writer, Atom10Constants.ContentTag, item.Content);
System\ServiceModel\Syndication\SyndicationItem.cs (1)
61Content = source.Content?.Clone();