4 writes to Description
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
273result.Description = ReadTextContentFrom(reader, "//atom:feed/atom:subtitle[@type]");
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
681result.Description = new TextSyndicationContent(reader.ReadElementString());
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
59Description = new TextSyndicationContent(description); 81Description = FeedUtils.CloneTextContent(source.Description);
4 references to Description
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1133WriteContentTo(writer, Atom10Constants.SubtitleTag, feed.Description);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
865string description = Feed.Description != null ? Feed.Description.Text : string.Empty;
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
81Description = FeedUtils.CloneTextContent(source.Description);