3 writes to SourceFeed
System.ServiceModel.Syndication (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
349
result.
SourceFeed
= ReadFeedFrom(reader, new SyndicationFeed(), true); // isSourceFeed
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
445
result.
SourceFeed
= feed;
System\ServiceModel\Syndication\SyndicationItem.cs (1)
70
SourceFeed
= source.SourceFeed.Clone(false);
13 references to SourceFeed
System.ServiceModel.Syndication (13)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1195
if (item.
SourceFeed
!= null)
1198
WriteFeedTo(dictWriter, item.
SourceFeed
, isSourceFeed: true);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (8)
1079
if (item.
SourceFeed
!= null)
1082
WriteAttributeExtensions(writer, item.
SourceFeed
, Version);
1084
for (int i = 0; i < item.
SourceFeed
.Links.Count; ++i)
1086
if (item.
SourceFeed
.Links[i].RelationshipType == Atom10Constants.SelfTag)
1088
selfLink = item.
SourceFeed
.Links[i];
1092
if (selfLink != null && !item.
SourceFeed
.AttributeExtensions.ContainsKey(s_rss20Url))
1096
string title = (item.
SourceFeed
.Title != null) ? item.
SourceFeed
.Title.Text : string.Empty;
System\ServiceModel\Syndication\SyndicationItem.cs (3)
68
if (source.
SourceFeed
!= null)
70
SourceFeed = source.
SourceFeed
.Clone(false);
71
SourceFeed
.Items = new Collection<SyndicationItem>();