2 writes to atomSerializer
System.ServiceModel (2)
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
60
this.
atomSerializer
= new Atom10FeedFormatter(feedTypeToCreate);
77
this.
atomSerializer
= new Atom10FeedFormatter(this.Feed);
13 references to atomSerializer
System.ServiceModel (13)
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (13)
178
this.
atomSerializer
.SetFeed(this.Feed);
706
bool parsedExtension = this.serializeExtensionsAsAtom && this.
atomSerializer
.TryParseItemElementFrom(reader, result);
1008
bool parsedExtension = this.serializeExtensionsAsAtom && this.
atomSerializer
.TryParseFeedElementFrom(reader, result);
1137
this.
atomSerializer
.WriteFeedAuthorsTo(writer, this.Feed.Authors);
1170
this.
atomSerializer
.WriteFeedContributorsTo(writer, this.Feed.Contributors);
1190
this.
atomSerializer
.WriteElement(writer, Atom10Constants.IdTag, this.Feed.Id);
1201
this.
atomSerializer
.WriteLink(writer, this.Feed.Links[i], this.Feed.BaseUri);
1276
this.
atomSerializer
.WriteItemAuthorsTo(writer, item.Authors);
1367
this.
atomSerializer
.WriteLink(writer, item.Links[i], item.BaseUri);
1383
this.
atomSerializer
.WriteItemLastUpdatedTimeTo(writer, item.LastUpdatedTime);
1393
this.
atomSerializer
.WriteContentTo(writer, Atom10Constants.RightsTag, item.Copyright);
1404
this.
atomSerializer
.WriteContentTo(writer, Atom10Constants.ContentTag, item.Content);
1418
this.
atomSerializer
.WriteItemContributorsTo(writer, item.Contributors);