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