20 instantiations of TextSyndicationContent
System.ServiceModel.Syndication (20)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (3)
589
TextSyndicationContent result = new
TextSyndicationContent
(val, kind);
1130
title ??= new
TextSyndicationContent
(string.Empty);
1176
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)
354
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
363
result.Summary = new
TextSyndicationContent
(reader.ReadElementString());
444
feed.Title = new
TextSyndicationContent
(feedTitle);
673
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
681
result.Description = new
TextSyndicationContent
(reader.ReadElementString());
689
result.Copyright = new
TextSyndicationContent
(reader.ReadElementString());
1072
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)
205
internal static
TextSyndicationContent
ReadTextContentFrom(XmlReader reader, string context, bool preserveAttributeExtensions)
549
private static
TextSyndicationContent
ReadTextContentFromHelper(XmlReader reader, string type, string context, bool preserveAttributeExtensions)
589
TextSyndicationContent
result = new TextSyndicationContent(val, kind);
1089
private
TextSyndicationContent
ReadTextContentFrom(XmlReader reader, string context)
1127
TextSyndicationContent
title = feed.Title;
1176
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)
85
public
TextSyndicationContent
Title { get; set; }
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1063
TextSyndicationContent
summary = item.Summary;
1066
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)
131
public
TextSyndicationContent
Copyright { get; set; }
133
public
TextSyndicationContent
Description { get; set; }
176
public
TextSyndicationContent
Title { get; set; }
System\ServiceModel\Syndication\SyndicationItem.cs (3)
99
public
TextSyndicationContent
Copyright { get; set; }
152
public
TextSyndicationContent
Summary { get; set; }
154
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
))]