16 references to TextSyndicationContent
System.ServiceModel.Syndication (16)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1099
title ??= new
TextSyndicationContent
(string.Empty);
1145
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)
323
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
332
result.Summary = new
TextSyndicationContent
(reader.ReadElementString());
413
feed.Title = new
TextSyndicationContent
(feedTitle);
642
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
650
result.Description = new
TextSyndicationContent
(reader.ReadElementString());
658
result.Copyright = new
TextSyndicationContent
(reader.ReadElementString());
1041
summary = new
TextSyndicationContent
(string.Empty);
System\ServiceModel\Syndication\SyndicationContent.cs (1)
35
return new
TextSyndicationContent
(content);
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
55
Title = new
TextSyndicationContent
(title);
59
Description = new
TextSyndicationContent
(description);
System\ServiceModel\Syndication\SyndicationItem.cs (2)
32
: this(title, (content != null) ? new
TextSyndicationContent
(content) : null, itemAlternateLink, id, lastUpdatedTime)
40
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)