20 instantiations of TextSyndicationContent
System.ServiceModel.Syndication (20)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (3)
562
TextSyndicationContent result = new
TextSyndicationContent
(val, kind);
1103
title ??= new
TextSyndicationContent
(string.Empty);
1149
TextSyndicationContent title = item.Title ?? new
TextSyndicationContent
(string.Empty);
System\ServiceModel\Syndication\ResourceCollectionInfo.cs (1)
21
public ResourceCollectionInfo(string title, Uri link) : this((title == null) ? null : new
TextSyndicationContent
(title), link)
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (7)
327
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
336
result.Summary = new
TextSyndicationContent
(reader.ReadElementString());
417
feed.Title = new
TextSyndicationContent
(feedTitle);
646
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
654
result.Description = new
TextSyndicationContent
(reader.ReadElementString());
662
result.Copyright = new
TextSyndicationContent
(reader.ReadElementString());
1045
summary = new
TextSyndicationContent
(string.Empty);
System\ServiceModel\Syndication\SyndicationContent.cs (3)
30
return new
TextSyndicationContent
(content, TextSyndicationContentKind.Html);
35
return new
TextSyndicationContent
(content);
45
return new
TextSyndicationContent
(content, TextSyndicationContentKind.XHtml);
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
55
Title = new
TextSyndicationContent
(title);
59
Description = new
TextSyndicationContent
(description);
System\ServiceModel\Syndication\SyndicationItem.cs (2)
32
: this(title, (content != null) ? new
TextSyndicationContent
(content) : null, itemAlternateLink, id, lastUpdatedTime)
40
Title = new
TextSyndicationContent
(title);
System\ServiceModel\Syndication\TextSyndicationContent.cs (1)
46
public override SyndicationContent Clone() => new
TextSyndicationContent
(this);
System\ServiceModel\Syndication\Workspace.cs (1)
19
public 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)
190
internal static
TextSyndicationContent
ReadTextContentFrom(XmlReader reader, string context, bool preserveAttributeExtensions)
522
private static
TextSyndicationContent
ReadTextContentFromHelper(XmlReader reader, string type, string context, bool preserveAttributeExtensions)
562
TextSyndicationContent
result = new TextSyndicationContent(val, kind);
1062
private
TextSyndicationContent
ReadTextContentFrom(XmlReader reader, string context)
1100
TextSyndicationContent
title = feed.Title;
1149
TextSyndicationContent
title = item.Title ?? new TextSyndicationContent(string.Empty);
System\ServiceModel\Syndication\FeedUtils.cs (3)
64
internal static
TextSyndicationContent
CloneTextContent(
TextSyndicationContent
content)
70
return (
TextSyndicationContent
)(content.Clone());
System\ServiceModel\Syndication\ResourceCollectionInfo.cs (4)
25
public ResourceCollectionInfo(
TextSyndicationContent
title, Uri link) : this(title, link, null, null)
29
public ResourceCollectionInfo(
TextSyndicationContent
title, Uri link, IEnumerable<CategoriesDocument> categories, bool allowsNewEntries)
34
public ResourceCollectionInfo(
TextSyndicationContent
title, Uri link, IEnumerable<CategoriesDocument> categories, IEnumerable<string> accepts)
79
public
TextSyndicationContent
Title { get; set; }
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1036
TextSyndicationContent
summary = item.Summary;
1039
summary = (item.Content as
TextSyndicationContent
);
System\ServiceModel\Syndication\SyndicationContent.cs (3)
28
public static
TextSyndicationContent
CreateHtmlContent(string content)
33
public static
TextSyndicationContent
CreatePlaintextContent(string content)
43
public static
TextSyndicationContent
CreateXhtmlContent(string content)
System\ServiceModel\Syndication\SyndicationFeed.cs (3)
128
public
TextSyndicationContent
Copyright { get; set; }
130
public
TextSyndicationContent
Description { get; set; }
173
public
TextSyndicationContent
Title { get; set; }
System\ServiceModel\Syndication\SyndicationItem.cs (3)
96
public
TextSyndicationContent
Copyright { get; set; }
149
public
TextSyndicationContent
Summary { get; set; }
151
public
TextSyndicationContent
Title { get; set; }
System\ServiceModel\Syndication\TextSyndicationContent.cs (1)
29
protected TextSyndicationContent(
TextSyndicationContent
source) : base(source)
System\ServiceModel\Syndication\Workspace.cs (2)
23
public Workspace(
TextSyndicationContent
title, IEnumerable<ResourceCollectionInfo> collections)
47
public
TextSyndicationContent
Title { get; set; }
System.ServiceModel.Web (1)
System.ServiceModel.Web.cs (1)
37
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ServiceModel.Syndication.
TextSyndicationContent
))]