3 writes to SourceFeed
System.ServiceModel.Syndication (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
334result.SourceFeed = ReadFeedFrom(reader, new SyndicationFeed(), true); // isSourceFeed
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
418result.SourceFeed = feed;
System\ServiceModel\Syndication\SyndicationItem.cs (1)
67SourceFeed = source.SourceFeed.Clone(false);
13 references to SourceFeed
System.ServiceModel.Syndication (13)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1168if (item.SourceFeed != null) 1171WriteFeedTo(dictWriter, item.SourceFeed, isSourceFeed: true);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (8)
1052if (item.SourceFeed != null) 1055WriteAttributeExtensions(writer, item.SourceFeed, Version); 1057for (int i = 0; i < item.SourceFeed.Links.Count; ++i) 1059if (item.SourceFeed.Links[i].RelationshipType == Atom10Constants.SelfTag) 1061selfLink = item.SourceFeed.Links[i]; 1065if (selfLink != null && !item.SourceFeed.AttributeExtensions.ContainsKey(s_rss20Url)) 1069string title = (item.SourceFeed.Title != null) ? item.SourceFeed.Title.Text : string.Empty;
System\ServiceModel\Syndication\SyndicationItem.cs (3)
65if (source.SourceFeed != null) 67SourceFeed = source.SourceFeed.Clone(false); 68SourceFeed.Items = new Collection<SyndicationItem>();