16 references to TextSyndicationContent
System.ServiceModel.Syndication (16)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1100
title ??= new
TextSyndicationContent
(string.Empty);
1146
TextSyndicationContent title = item.Title ?? new
TextSyndicationContent
(string.Empty);
System\ServiceModel\Syndication\ResourceCollectionInfo.cs (1)
21
public ResourceCollectionInfo(string title, Uri link) : this((title == null) ? null : new
TextSyndicationContent
(title), link)
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (7)
324
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
333
result.Summary = new
TextSyndicationContent
(reader.ReadElementString());
414
feed.Title = new
TextSyndicationContent
(feedTitle);
643
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
651
result.Description = new
TextSyndicationContent
(reader.ReadElementString());
659
result.Copyright = new
TextSyndicationContent
(reader.ReadElementString());
1042
summary = new
TextSyndicationContent
(string.Empty);
System\ServiceModel\Syndication\SyndicationContent.cs (1)
36
return new
TextSyndicationContent
(content);
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
57
Title = new
TextSyndicationContent
(title);
61
Description = new
TextSyndicationContent
(description);
System\ServiceModel\Syndication\SyndicationItem.cs (2)
33
: this(title, (content != null) ? new
TextSyndicationContent
(content) : null, itemAlternateLink, id, lastUpdatedTime)
41
Title = new
TextSyndicationContent
(title);
System\ServiceModel\Syndication\Workspace.cs (1)
19
public Workspace(string title, IEnumerable<ResourceCollectionInfo> collections) : this((title != null) ? new
TextSyndicationContent
(title) : null, collections)