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