20 instantiations of TextSyndicationContent
System.ServiceModel.Syndication (20)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (3)
589TextSyndicationContent result = new TextSyndicationContent(val, kind); 1130title ??= new TextSyndicationContent(string.Empty); 1176TextSyndicationContent 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)
354result.Title = new TextSyndicationContent(reader.ReadElementString()); 363result.Summary = new TextSyndicationContent(reader.ReadElementString()); 444feed.Title = new TextSyndicationContent(feedTitle); 673result.Title = new TextSyndicationContent(reader.ReadElementString()); 681result.Description = new TextSyndicationContent(reader.ReadElementString()); 689result.Copyright = new TextSyndicationContent(reader.ReadElementString()); 1072summary = new TextSyndicationContent(string.Empty);
System\ServiceModel\Syndication\SyndicationContent.cs (3)
30return new TextSyndicationContent(content, TextSyndicationContentKind.Html); 35return new TextSyndicationContent(content); 45return new TextSyndicationContent(content, TextSyndicationContentKind.XHtml);
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
55Title = new TextSyndicationContent(title); 59Description = new TextSyndicationContent(description);
System\ServiceModel\Syndication\SyndicationItem.cs (2)
32: this(title, (content != null) ? new TextSyndicationContent(content) : null, itemAlternateLink, id, lastUpdatedTime) 40Title = 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)
28 references to TextSyndicationContent
System.ServiceModel.Syndication (27)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (6)
205internal static TextSyndicationContent ReadTextContentFrom(XmlReader reader, string context, bool preserveAttributeExtensions) 549private static TextSyndicationContent ReadTextContentFromHelper(XmlReader reader, string type, string context, bool preserveAttributeExtensions) 589TextSyndicationContent result = new TextSyndicationContent(val, kind); 1089private TextSyndicationContent ReadTextContentFrom(XmlReader reader, string context) 1127TextSyndicationContent title = feed.Title; 1176TextSyndicationContent 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) 85public TextSyndicationContent Title { get; set; }
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1063TextSyndicationContent summary = item.Summary; 1066summary = (item.Content as TextSyndicationContent);
System\ServiceModel\Syndication\SyndicationContent.cs (3)
28public static TextSyndicationContent CreateHtmlContent(string content) 33public static TextSyndicationContent CreatePlaintextContent(string content) 43public static TextSyndicationContent CreateXhtmlContent(string content)
System\ServiceModel\Syndication\SyndicationFeed.cs (3)
131public TextSyndicationContent Copyright { get; set; } 133public TextSyndicationContent Description { get; set; } 176public TextSyndicationContent Title { get; set; }
System\ServiceModel\Syndication\SyndicationItem.cs (3)
99public TextSyndicationContent Copyright { get; set; } 152public TextSyndicationContent Summary { get; set; } 154public 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))]