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