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