2 types derived from SyndicationItemFormatter
System.ServiceModel (2)
System\ServiceModel\Syndication\Atom10ItemFormatter.cs (1)
20public class Atom10ItemFormatter : SyndicationItemFormatter, IXmlSerializable
System\ServiceModel\Syndication\Rss20ItemFormatter.cs (1)
20public class Rss20ItemFormatter : SyndicationItemFormatter, IXmlSerializable
14 references to SyndicationItemFormatter
System.Data.Services (11)
System\Data\Services\Serializers\Atom10FormatterFactory.cs (2)
50internal override SyndicationItemFormatter CreateSyndicationItemFormatter() 61internal override SyndicationItemFormatter CreateSyndicationItemFormatter(SyndicationItem itemToWrite)
System\Data\Services\Serializers\SyndicationDeserializer.cs (1)
158private static SyndicationItem ReadSyndicationItem(SyndicationItemFormatter formatter, XmlReader reader)
System\Data\Services\Serializers\SyndicationFormatterFactory.cs (6)
41/// <summary>Creates a new instance of an <see cref="SyndicationItemFormatter"/> class.</summary> 42/// <returns>A new instance of an <see cref="SyndicationItemFormatter"/> class.</returns> 43internal abstract SyndicationItemFormatter CreateSyndicationItemFormatter(); 46/// Creates a new instance of an <see cref="SyndicationItemFormatter"/> class with the specified 51/// A new instance of the <see cref="SyndicationItemFormatter"/> class with the specified 54internal abstract SyndicationItemFormatter CreateSyndicationItemFormatter(SyndicationItem itemToWrite);
System\Data\Services\Serializers\SyndicationSerializer.cs (2)
218SyndicationItemFormatter formatter = this.factory.CreateSyndicationItemFormatter(this.resultItem); 1219SyndicationItemFormatter formatter = this.factory.CreateSyndicationItemFormatter(this.item);
System.ServiceModel (2)
System\ServiceModel\Syndication\Atom10ItemFormatter.cs (1)
158return SyndicationItemFormatter.CreateItemInstance(this.itemType);
System\ServiceModel\Syndication\Rss20ItemFormatter.cs (1)
176return SyndicationItemFormatter.CreateItemInstance(this.itemType);
System.ServiceModel.Web (1)
AssemblyInfo.cs (1)
42[assembly: TypeForwardedTo(typeof(System.ServiceModel.Syndication.SyndicationItemFormatter))]