16 references to TextSyndicationContent
System.ServiceModel.Syndication (16)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1130title ??= new TextSyndicationContent(string.Empty); 1176TextSyndicationContent title = item.Title ?? new TextSyndicationContent(string.Empty);
System\ServiceModel\Syndication\ResourceCollectionInfo.cs (1)
21public ResourceCollectionInfo(string title, Uri link) : this((title == null) ? null : new TextSyndicationContent(title), link)
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (7)
354result.Title = new TextSyndicationContent(reader.ReadElementString()); 363result.Summary = new TextSyndicationContent(reader.ReadElementString()); 444feed.Title = new TextSyndicationContent(feedTitle); 673result.Title = new TextSyndicationContent(reader.ReadElementString()); 681result.Description = new TextSyndicationContent(reader.ReadElementString()); 689result.Copyright = new TextSyndicationContent(reader.ReadElementString()); 1072summary = new TextSyndicationContent(string.Empty);
System\ServiceModel\Syndication\SyndicationContent.cs (1)
35return new TextSyndicationContent(content);
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
55Title = new TextSyndicationContent(title); 59Description = new TextSyndicationContent(description);
System\ServiceModel\Syndication\SyndicationItem.cs (2)
32: this(title, (content != null) ? new TextSyndicationContent(content) : null, itemAlternateLink, id, lastUpdatedTime) 40Title = new TextSyndicationContent(title);
System\ServiceModel\Syndication\Workspace.cs (1)
19public Workspace(string title, IEnumerable<ResourceCollectionInfo> collections) : this((title != null) ? new TextSyndicationContent(title) : null, collections)