5 writes to Title
System.ServiceModel.Syndication (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
262result.Title = ReadTextContentFrom(reader, "//atom:feed/atom:title[@type]");
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
417feed.Title = new TextSyndicationContent(feedTitle); 646result.Title = new TextSyndicationContent(reader.ReadElementString());
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
55Title = new TextSyndicationContent(title); 86Title = FeedUtils.CloneTextContent(source.Title);
6 references to Title
System.ServiceModel.Syndication (6)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1100TextSyndicationContent title = feed.Title;
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (4)
824string title = Feed.Title != null ? Feed.Title.Text : string.Empty; 1069string title = (item.SourceFeed.Title != null) ? item.SourceFeed.Title.Text : string.Empty;
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
86Title = FeedUtils.CloneTextContent(source.Title);