4 references to TextSyndicationContent
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
589TextSyndicationContent result = new TextSyndicationContent(val, kind);
System\ServiceModel\Syndication\SyndicationContent.cs (2)
30return new TextSyndicationContent(content, TextSyndicationContentKind.Html); 45return new TextSyndicationContent(content, TextSyndicationContentKind.XHtml);
System\ServiceModel\Syndication\TextSyndicationContent.cs (1)
14public TextSyndicationContent(string text) : this(text, TextSyndicationContentKind.Plaintext)