1 type derived from Atom10FeedFormatter
System.ServiceModel.Syndication (1)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1193
public class Atom10FeedFormatter<TSyndicationFeed> :
Atom10FeedFormatter
where TSyndicationFeed : SyndicationFeed, new()
4 instantiations of Atom10FeedFormatter
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10ItemFormatter.cs (1)
14
private readonly Atom10FeedFormatter _feedSerializer = new
Atom10FeedFormatter
();
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
42
_atomSerializer = new
Atom10FeedFormatter
(feedTypeToCreate);
55
_atomSerializer = new
Atom10FeedFormatter
(Feed);
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
436
public Atom10FeedFormatter GetAtom10Formatter() => new
Atom10FeedFormatter
(this);
36 references to Atom10FeedFormatter
System.ServiceModel (1)
netstandard.cs (1)
238
[assembly: TypeForwardedTo(typeof(
Atom10FeedFormatter
))]
System.ServiceModel.Syndication (34)
System\ServiceModel\Syndication\Atom10ItemFormatter.cs (1)
14
private readonly
Atom10FeedFormatter
_feedSerializer = new Atom10FeedFormatter();
System\ServiceModel\Syndication\AtomPub10CategoriesDocumentFormatter.cs (1)
163
writer.WriteAttributeString(Atom10Constants.Atom10Prefix,
Atom10FeedFormatter
.XmlNsNs, Atom10Constants.Atom10Namespace);
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (15)
159
if (reader.LocalName == "base" && reader.NamespaceURI ==
Atom10FeedFormatter
.XmlNs)
163
else if (reader.LocalName == "lang" && reader.NamespaceURI ==
Atom10FeedFormatter
.XmlNs)
206
Atom10FeedFormatter
.ReadCategory(reader, category, version, preserveAttributeExtensions: true, preserveElementExtensions: true, maxExtensionSize);
233
if (reader.LocalName == "base" && reader.NamespaceURI ==
Atom10FeedFormatter
.XmlNs)
237
else if (reader.LocalName == "lang" && reader.NamespaceURI ==
Atom10FeedFormatter
.XmlNs)
310
Atom10FeedFormatter
.WriteCategory(writer, categories.Categories[i], version);
327
writer.WriteAttributeString("xml", "base",
Atom10FeedFormatter
.XmlNs, FeedUtils.GetUriString(baseUri));
332
writer.WriteAttributeString("xml", nameof(lang),
Atom10FeedFormatter
.XmlNs, lang);
343
if (reader.LocalName == "base" && reader.NamespaceURI ==
Atom10FeedFormatter
.XmlNs)
379
result.Title =
Atom10FeedFormatter
.ReadTextContentFrom(reader, "//app:service/app:workspace/app:collection/atom:title[@type]", preserveAttributeExtensions: true);
421
if (reader.LocalName == "lang" && reader.NamespaceURI ==
Atom10FeedFormatter
.XmlNs)
425
else if (reader.LocalName == "base" && reader.NamespaceURI ==
Atom10FeedFormatter
.XmlNs)
495
if (reader.LocalName == "base" && reader.NamespaceURI ==
Atom10FeedFormatter
.XmlNs)
527
result.Title =
Atom10FeedFormatter
.ReadTextContentFrom(reader, "//app:service/app:workspace/atom:title[@type]", preserveAttributeExtensions: true);
579
writer.WriteAttributeString(Atom10Constants.Atom10Prefix,
Atom10FeedFormatter
.XmlNsNs, Atom10Constants.Atom10Namespace);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (16)
24
private readonly
Atom10FeedFormatter
_atomSerializer;
202
if (reader.LocalName == "base" && reader.NamespaceURI ==
Atom10FeedFormatter
.XmlNs)
290
if (name == "base" && ns ==
Atom10FeedFormatter
.XmlNs)
483
if (name == "base" && ns ==
Atom10FeedFormatter
.XmlNs)
585
string tmp = reader.GetAttribute("base",
Atom10FeedFormatter
.XmlNs);
603
if (name == "base" && ns ==
Atom10FeedFormatter
.XmlNs)
780
writer.WriteAttributeString("xml", "base",
Atom10FeedFormatter
.XmlNs, FeedUtils.GetUriString(baseUriToWrite));
818
writer.WriteAttributeString("xml", "base",
Atom10FeedFormatter
.XmlNs, FeedUtils.GetUriString(Feed.BaseUri));
946
Atom10FeedFormatter
.WriteElement(writer, Atom10Constants.IdTag, Feed.Id);
957
Atom10FeedFormatter
.WriteLink(writer, Feed.Links[i], Feed.BaseUri);
971
writer.WriteAttributeString("xml", "base",
Atom10FeedFormatter
.XmlNs, FeedUtils.GetUriString(baseUriToWrite));
1100
Atom10FeedFormatter
.WriteLink(writer, item.Links[i], item.BaseUri);
1108
Atom10FeedFormatter
.WriteItemLastUpdatedTimeTo(writer, item.LastUpdatedTime);
1114
Atom10FeedFormatter
.WriteContentTo(writer, Atom10Constants.RightsTag, item.Copyright);
1121
Atom10FeedFormatter
.WriteContentTo(writer, Atom10Constants.ContentTag, item.Content);
1142
writer.WriteAttributeString("xml", "base",
Atom10FeedFormatter
.XmlNs, FeedUtils.GetUriString(baseUriToWrite));
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
436
public
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
))]