5 writes to Title
System.ServiceModel.Syndication (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
277result.Title = ReadTextContentFrom(reader, "//atom:feed/atom:title[@type]");
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
444feed.Title = new TextSyndicationContent(feedTitle); 673result.Title = new TextSyndicationContent(reader.ReadElementString());
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
55Title = new TextSyndicationContent(title); 89Title = FeedUtils.CloneTextContent(source.Title);
6 references to Title
System.ServiceModel.Syndication (6)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1127TextSyndicationContent title = feed.Title;
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (4)
851string title = Feed.Title != null ? Feed.Title.Text : string.Empty; 1096string title = (item.SourceFeed.Title != null) ? item.SourceFeed.Title.Text : string.Empty;
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
89Title = FeedUtils.CloneTextContent(source.Title);