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