4 writes to Summary
System.Data.Services (1)
System\Data\Services\Epm\EpmSyndicationContentSerializer.cs (1)
138this.Target.Summary = new TextSyndicationContent(textPropertyValue, contentKind);
System.ServiceModel (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
379result.Summary = ReadTextContentFrom(reader, "//atom:feed/atom:entry/atom:summary[@type]");
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
627result.Summary = new TextSyndicationContent(reader.ReadElementString()); 745result.Summary = null;
5 references to Summary
System.Data.Services (2)
System\Data\Services\Epm\EpmSyndicationContentDeSerializer.cs (2)
123if (this.Item.Summary != null) 125resourceType.SetEpmValue(newRoot, element, this.Item.Summary.Text, this);
System.ServiceModel (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1278WriteContentTo(dictWriter, Atom10Constants.SummaryTag, item.Summary);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
744result.Content = result.Summary; 1299TextSyndicationContent summary = item.Summary;