7 references to TextSyndicationContent
System.Data.Services (3)
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.ServiceModel (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
629
TextSyndicationContent result = new
TextSyndicationContent
(val, kind);
System\ServiceModel\Syndication\SyndicationContent.cs (2)
49
return new
TextSyndicationContent
(content, TextSyndicationContentKind.Html);
64
return new
TextSyndicationContent
(content, TextSyndicationContentKind.XHtml);
System\ServiceModel\Syndication\TextSyndicationContent.cs (1)
22
public TextSyndicationContent(string text) :
this
(text, TextSyndicationContentKind.Plaintext)