2 writes to Description
System.ServiceModel (2)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
316result.Description = ReadTextContentFrom(reader, "//atom:feed/atom:subtitle[@type]");
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
938result.Description = new TextSyndicationContent(reader.ReadElementString());
3 references to Description
System.ServiceModel (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1233WriteContentTo(writer, Atom10Constants.SubtitleTag, feed.Description);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1112string description = this.Feed.Description != null ? this.Feed.Description.Text : string.Empty;