4 writes to Content
System.Data.Services (2)
System\Data\Services\Serializers\SyndicationSerializer.cs (2)
535target.Content = new UrlSyndicationContent(readStreamUri, mediaContentType); 544target.Content = content;
System.ServiceModel (2)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
347result.Content = ReadContentFrom(reader, result);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
744result.Content = result.Summary;
6 references to Content
System.Data.Services (2)
System\Data\Services\Serializers\SyndicationDeserializer.cs (2)
119return item.Content != null || item.Links.Count > 0; 241XmlSyndicationContent itemContent = item.Content as XmlSyndicationContent;
System.ServiceModel (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1293WriteContentTo(dictWriter, Atom10Constants.ContentTag, item.Content);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (3)
742if (result.Content == null && !readAlternateLink) 1302summary = (item.Content as TextSyndicationContent); 1404this.atomSerializer.WriteContentTo(writer, Atom10Constants.ContentTag, item.Content);