4 writes to Content
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
298result.Content = ReadContentFrom(reader, result);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
457result.Content = result.Summary;
System\ServiceModel\Syndication\SyndicationItem.cs (2)
42Content = content; 58Content = source.Content?.Clone();
5 references to Content
System.ServiceModel.Syndication (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1166WriteContentTo(dictWriter, Atom10Constants.ContentTag, item.Content);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (3)
455if (result.Content == null && !readAlternateLink) 1039summary = (item.Content as TextSyndicationContent); 1124Atom10FeedFormatter.WriteContentTo(writer, Atom10Constants.ContentTag, item.Content);
System\ServiceModel\Syndication\SyndicationItem.cs (1)
58Content = source.Content?.Clone();