18 references to TextSyndicationContent
System.Data.Services (2)
System\Data\Services\Serializers\SyndicationSerializer.cs (2)
472
target.Title = new
TextSyndicationContent
(String.Empty);
581
feed.Title = new
TextSyndicationContent
(title);
System.ServiceModel (16)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1230
title = title ?? new
TextSyndicationContent
(string.Empty);
1276
TextSyndicationContent title = item.Title ?? new
TextSyndicationContent
(string.Empty);
System\ServiceModel\Syndication\ResourceCollectionInfo.cs (1)
30
: this((title == null) ? null : new
TextSyndicationContent
(title), link)
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (7)
618
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
627
result.Summary = new
TextSyndicationContent
(reader.ReadElementString());
701
feed.Title = new
TextSyndicationContent
(feedTitle);
930
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
938
result.Description = new
TextSyndicationContent
(reader.ReadElementString());
946
result.Copyright = new
TextSyndicationContent
(reader.ReadElementString());
1308
summary = new
TextSyndicationContent
(string.Empty);
System\ServiceModel\Syndication\SyndicationContent.cs (1)
54
return new
TextSyndicationContent
(content);
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
68
this.title = new
TextSyndicationContent
(title);
72
this.description = new
TextSyndicationContent
(description);
System\ServiceModel\Syndication\SyndicationItem.cs (2)
47
: this(title, (content != null) ? new
TextSyndicationContent
(content) : null, itemAlternateLink, id, lastUpdatedTime)
55
this.Title = new
TextSyndicationContent
(title);
System\ServiceModel\Syndication\Workspace.cs (1)
27
: this((title != null) ? new
TextSyndicationContent
(title) : null, collections)