25 instantiations of TextSyndicationContent
System.Data.Services (5)
System\Data\Services\Epm\EpmSyndicationContentSerializer.cs (3)
135
this.Target.Copyright = new
TextSyndicationContent
(textPropertyValue, contentKind);
138
this.Target.Summary = new
TextSyndicationContent
(textPropertyValue, contentKind);
141
this.Target.Title = new
TextSyndicationContent
(textPropertyValue, contentKind);
System\Data\Services\Serializers\SyndicationSerializer.cs (2)
472
target.Title = new
TextSyndicationContent
(String.Empty);
581
feed.Title = new
TextSyndicationContent
(title);
System.ServiceModel (20)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (3)
629
TextSyndicationContent result = new
TextSyndicationContent
(val, kind);
1230
title = title ?? new
TextSyndicationContent
(string.Empty);
1276
TextSyndicationContent title = item.Title ?? new
TextSyndicationContent
(string.Empty);
System\ServiceModel\Syndication\ResourceCollectionInfo.cs (1)
30
: this((title == null) ? null : new
TextSyndicationContent
(title), link)
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (7)
618
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
627
result.Summary = new
TextSyndicationContent
(reader.ReadElementString());
701
feed.Title = new
TextSyndicationContent
(feedTitle);
930
result.Title = new
TextSyndicationContent
(reader.ReadElementString());
938
result.Description = new
TextSyndicationContent
(reader.ReadElementString());
946
result.Copyright = new
TextSyndicationContent
(reader.ReadElementString());
1308
summary = new
TextSyndicationContent
(string.Empty);
System\ServiceModel\Syndication\SyndicationContent.cs (3)
49
return new
TextSyndicationContent
(content, TextSyndicationContentKind.Html);
54
return new
TextSyndicationContent
(content);
64
return new
TextSyndicationContent
(content, TextSyndicationContentKind.XHtml);
System\ServiceModel\Syndication\SyndicationFeed.cs (2)
68
this.title = new
TextSyndicationContent
(title);
72
this.description = new
TextSyndicationContent
(description);
System\ServiceModel\Syndication\SyndicationItem.cs (2)
47
: this(title, (content != null) ? new
TextSyndicationContent
(content) : null, itemAlternateLink, id, lastUpdatedTime)
55
this.Title = new
TextSyndicationContent
(title);
System\ServiceModel\Syndication\TextSyndicationContent.cs (1)
70
return new
TextSyndicationContent
(this);
System\ServiceModel\Syndication\Workspace.cs (1)
27
: this((title != null) ? new
TextSyndicationContent
(title) : null, collections)
36 references to TextSyndicationContent
System.ServiceModel (35)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (6)
248
internal static
TextSyndicationContent
ReadTextContentFrom(XmlReader reader, string context, bool preserveAttributeExtensions)
574
static
TextSyndicationContent
ReadTextContentFromHelper(XmlReader reader, string type, string context, bool preserveAttributeExtensions)
629
TextSyndicationContent
result = new TextSyndicationContent(val, kind);
1190
TextSyndicationContent
ReadTextContentFrom(XmlReader reader, string context)
1227
TextSyndicationContent
title = feed.Title;
1276
TextSyndicationContent
title = item.Title ?? new TextSyndicationContent(string.Empty);
System\ServiceModel\Syndication\FeedUtils.cs (3)
67
static internal
TextSyndicationContent
CloneTextContent(
TextSyndicationContent
content)
73
return (
TextSyndicationContent
)(content.Clone());
System\ServiceModel\Syndication\ResourceCollectionInfo.cs (5)
23
TextSyndicationContent
title;
34
public ResourceCollectionInfo(
TextSyndicationContent
title, Uri link)
39
public ResourceCollectionInfo(
TextSyndicationContent
title, Uri link, IEnumerable<CategoriesDocument> categories, bool allowsNewEntries)
44
public ResourceCollectionInfo(
TextSyndicationContent
title, Uri link, IEnumerable<CategoriesDocument> categories, IEnumerable<string> accepts)
126
public
TextSyndicationContent
Title
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1299
TextSyndicationContent
summary = item.Summary;
1302
summary = (item.Content as
TextSyndicationContent
);
System\ServiceModel\Syndication\SyndicationContent.cs (3)
47
public static
TextSyndicationContent
CreateHtmlContent(string content)
52
public static
TextSyndicationContent
CreatePlaintextContent(string content)
62
public static
TextSyndicationContent
CreateXhtmlContent(string content)
System\ServiceModel\Syndication\SyndicationFeed.cs (6)
27
TextSyndicationContent
copyright;
28
TextSyndicationContent
description;
37
TextSyndicationContent
title;
171
public
TextSyndicationContent
Copyright
177
public
TextSyndicationContent
Description
250
public
TextSyndicationContent
Title
System\ServiceModel\Syndication\SyndicationItem.cs (6)
26
TextSyndicationContent
copyright;
33
TextSyndicationContent
summary;
34
TextSyndicationContent
title;
145
public
TextSyndicationContent
Copyright
192
public
TextSyndicationContent
Summary
198
public
TextSyndicationContent
Title
System\ServiceModel\Syndication\TextSyndicationContent.cs (1)
36
protected TextSyndicationContent(
TextSyndicationContent
source)
System\ServiceModel\Syndication\Workspace.cs (3)
20
TextSyndicationContent
title;
31
public Workspace(
TextSyndicationContent
title, IEnumerable<ResourceCollectionInfo> collections)
78
public
TextSyndicationContent
Title
System.ServiceModel.Web (1)
AssemblyInfo.cs (1)
46
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Syndication.
TextSyndicationContent
))]