1 type derived from Atom10FeedFormatter
System.ServiceModel.Syndication (1)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1223public class Atom10FeedFormatter<TSyndicationFeed> : Atom10FeedFormatter where TSyndicationFeed : SyndicationFeed, new()
4 instantiations of Atom10FeedFormatter
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10ItemFormatter.cs (1)
14private readonly Atom10FeedFormatter _feedSerializer = new Atom10FeedFormatter();
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
45_atomSerializer = new Atom10FeedFormatter(feedTypeToCreate); 58_atomSerializer = new Atom10FeedFormatter(Feed);
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
440public Atom10FeedFormatter GetAtom10Formatter() => new Atom10FeedFormatter(this);
35 references to Atom10FeedFormatter
System.ServiceModel.Syndication (34)
System\ServiceModel\Syndication\Atom10ItemFormatter.cs (1)
14private readonly Atom10FeedFormatter _feedSerializer = new Atom10FeedFormatter();
System\ServiceModel\Syndication\AtomPub10CategoriesDocumentFormatter.cs (1)
180writer.WriteAttributeString(Atom10Constants.Atom10Prefix, Atom10FeedFormatter.XmlNsNs, Atom10Constants.Atom10Namespace);
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (15)
176if (reader.LocalName == "base" && reader.NamespaceURI == Atom10FeedFormatter.XmlNs) 180else if (reader.LocalName == "lang" && reader.NamespaceURI == Atom10FeedFormatter.XmlNs) 223Atom10FeedFormatter.ReadCategory(reader, category, version, preserveAttributeExtensions: true, preserveElementExtensions: true, maxExtensionSize); 250if (reader.LocalName == "base" && reader.NamespaceURI == Atom10FeedFormatter.XmlNs) 254else if (reader.LocalName == "lang" && reader.NamespaceURI == Atom10FeedFormatter.XmlNs) 327Atom10FeedFormatter.WriteCategory(writer, categories.Categories[i], version); 344writer.WriteAttributeString("xml", "base", Atom10FeedFormatter.XmlNs, FeedUtils.GetUriString(baseUri)); 349writer.WriteAttributeString("xml", nameof(lang), Atom10FeedFormatter.XmlNs, lang); 360if (reader.LocalName == "base" && reader.NamespaceURI == Atom10FeedFormatter.XmlNs) 396result.Title = Atom10FeedFormatter.ReadTextContentFrom(reader, "//app:service/app:workspace/app:collection/atom:title[@type]", preserveAttributeExtensions: true); 438if (reader.LocalName == "lang" && reader.NamespaceURI == Atom10FeedFormatter.XmlNs) 442else if (reader.LocalName == "base" && reader.NamespaceURI == Atom10FeedFormatter.XmlNs) 512if (reader.LocalName == "base" && reader.NamespaceURI == Atom10FeedFormatter.XmlNs) 544result.Title = Atom10FeedFormatter.ReadTextContentFrom(reader, "//app:service/app:workspace/atom:title[@type]", preserveAttributeExtensions: true); 596writer.WriteAttributeString(Atom10Constants.Atom10Prefix, Atom10FeedFormatter.XmlNsNs, Atom10Constants.Atom10Namespace);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (16)
24private readonly Atom10FeedFormatter _atomSerializer; 232if (reader.LocalName == "base" && reader.NamespaceURI == Atom10FeedFormatter.XmlNs) 320if (name == "base" && ns == Atom10FeedFormatter.XmlNs) 513if (name == "base" && ns == Atom10FeedFormatter.XmlNs) 615string tmp = reader.GetAttribute("base", Atom10FeedFormatter.XmlNs); 633if (name == "base" && ns == Atom10FeedFormatter.XmlNs) 810writer.WriteAttributeString("xml", "base", Atom10FeedFormatter.XmlNs, FeedUtils.GetUriString(baseUriToWrite)); 848writer.WriteAttributeString("xml", "base", Atom10FeedFormatter.XmlNs, FeedUtils.GetUriString(Feed.BaseUri)); 976Atom10FeedFormatter.WriteElement(writer, Atom10Constants.IdTag, Feed.Id); 987Atom10FeedFormatter.WriteLink(writer, Feed.Links[i], Feed.BaseUri); 1001writer.WriteAttributeString("xml", "base", Atom10FeedFormatter.XmlNs, FeedUtils.GetUriString(baseUriToWrite)); 1130Atom10FeedFormatter.WriteLink(writer, item.Links[i], item.BaseUri); 1138Atom10FeedFormatter.WriteItemLastUpdatedTimeTo(writer, item.LastUpdatedTime); 1144Atom10FeedFormatter.WriteContentTo(writer, Atom10Constants.RightsTag, item.Copyright); 1151Atom10FeedFormatter.WriteContentTo(writer, Atom10Constants.ContentTag, item.Content); 1172writer.WriteAttributeString("xml", "base", Atom10FeedFormatter.XmlNs, FeedUtils.GetUriString(baseUriToWrite));
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
440public Atom10FeedFormatter GetAtom10Formatter() => new Atom10FeedFormatter(this);
System.ServiceModel.Web (1)
System.ServiceModel.Web.cs (1)
8[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ServiceModel.Syndication.Atom10FeedFormatter))]