6 instantiations of XmlSyndicationContent
System.ServiceModel.Syndication (6)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
654return new XmlSyndicationContent(reader);
System\ServiceModel\Syndication\SyndicationContent.cs (4)
50return new XmlSyndicationContent(Atom10Constants.XmlMediaType, dataContractObject, (DataContractSerializer)null); 55return new XmlSyndicationContent(Atom10Constants.XmlMediaType, dataContractObject, dataContractSerializer); 60return new XmlSyndicationContent(xmlReader); 65return new XmlSyndicationContent(Atom10Constants.XmlMediaType, xmlSerializerObject, serializer);
System\ServiceModel\Syndication\XmlSyndicationContent.cs (1)
91public override SyndicationContent Clone() => new XmlSyndicationContent(this);
6 references to XmlSyndicationContent
System.ServiceModel.Syndication (5)
System\ServiceModel\Syndication\SyndicationContent.cs (4)
48public static XmlSyndicationContent CreateXmlContent(object dataContractObject) 53public static XmlSyndicationContent CreateXmlContent(object dataContractObject, XmlObjectSerializer dataContractSerializer) 58public static XmlSyndicationContent CreateXmlContent(XmlReader xmlReader) 63public static XmlSyndicationContent CreateXmlContent(object xmlSerializerObject, XmlSerializer serializer)
System\ServiceModel\Syndication\XmlSyndicationContent.cs (1)
79protected XmlSyndicationContent(XmlSyndicationContent source) : base(source)
System.ServiceModel.Web (1)
System.ServiceModel.Web.cs (1)
41[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ServiceModel.Syndication.XmlSyndicationContent))]