16 references to TextSyndicationContent
System.ServiceModel.Syndication (16)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1130
title ??= new
TextSyndicationContent
(string.Empty);
1176
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)
354
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
363
result.Summary = new
TextSyndicationContent
(reader.ReadElementString());
444
feed.Title = new
TextSyndicationContent
(feedTitle);
673
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
681
result.Description = new
TextSyndicationContent
(reader.ReadElementString());
689
result.Copyright = new
TextSyndicationContent
(reader.ReadElementString());
1072
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)