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