20 instantiations of TextSyndicationContent
System.ServiceModel.Syndication (20)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (3)
563TextSyndicationContent result = new TextSyndicationContent(val, kind); 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 (3)
31return new TextSyndicationContent(content, TextSyndicationContentKind.Html); 36return new TextSyndicationContent(content); 46return new TextSyndicationContent(content, TextSyndicationContentKind.XHtml);
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\TextSyndicationContent.cs (1)
46public override SyndicationContent Clone() => new TextSyndicationContent(this);
System\ServiceModel\Syndication\Workspace.cs (1)
19public Workspace(string title, IEnumerable<ResourceCollectionInfo> collections) : this((title != null) ? new TextSyndicationContent(title) : null, collections)
29 references to TextSyndicationContent
System.ServiceModel (1)
netstandard.cs (1)
267[assembly: TypeForwardedTo(typeof(TextSyndicationContent))]
System.ServiceModel.Syndication (27)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (6)
191internal static TextSyndicationContent ReadTextContentFrom(XmlReader reader, string context, bool preserveAttributeExtensions) 523private static TextSyndicationContent ReadTextContentFromHelper(XmlReader reader, string type, string context, bool preserveAttributeExtensions) 563TextSyndicationContent result = new TextSyndicationContent(val, kind); 1059private TextSyndicationContent ReadTextContentFrom(XmlReader reader, string context) 1097TextSyndicationContent title = feed.Title; 1146TextSyndicationContent title = item.Title ?? new TextSyndicationContent(string.Empty);
System\ServiceModel\Syndication\FeedUtils.cs (3)
64internal static TextSyndicationContent CloneTextContent(TextSyndicationContent content) 70return (TextSyndicationContent)(content.Clone());
System\ServiceModel\Syndication\ResourceCollectionInfo.cs (4)
25public ResourceCollectionInfo(TextSyndicationContent title, Uri link) : this(title, link, null, null) 29public ResourceCollectionInfo(TextSyndicationContent title, Uri link, IEnumerable<CategoriesDocument> categories, bool allowsNewEntries) 34public ResourceCollectionInfo(TextSyndicationContent title, Uri link, IEnumerable<CategoriesDocument> categories, IEnumerable<string> accepts) 79public TextSyndicationContent Title { get; set; }
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1033TextSyndicationContent summary = item.Summary; 1036summary = (item.Content as TextSyndicationContent);
System\ServiceModel\Syndication\SyndicationContent.cs (3)
29public static TextSyndicationContent CreateHtmlContent(string content) 34public static TextSyndicationContent CreatePlaintextContent(string content) 44public static TextSyndicationContent CreateXhtmlContent(string content)
System\ServiceModel\Syndication\SyndicationFeed.cs (3)
130public TextSyndicationContent Copyright { get; set; } 132public TextSyndicationContent Description { get; set; } 175public TextSyndicationContent Title { get; set; }
System\ServiceModel\Syndication\SyndicationItem.cs (3)
97public TextSyndicationContent Copyright { get; set; } 150public TextSyndicationContent Summary { get; set; } 152public TextSyndicationContent Title { get; set; }
System\ServiceModel\Syndication\TextSyndicationContent.cs (1)
29protected TextSyndicationContent(TextSyndicationContent source) : base(source)
System\ServiceModel\Syndication\Workspace.cs (2)
23public Workspace(TextSyndicationContent title, IEnumerable<ResourceCollectionInfo> collections) 47public TextSyndicationContent Title { get; set; }
System.ServiceModel.Web (1)
System.ServiceModel.Web.cs (1)
37[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ServiceModel.Syndication.TextSyndicationContent))]