SyndicationContent
SyndicationContent
SyndicationContent
SyndicationContent
Class
Definition
Represents feed content including Text, HTML, XHTML, URL, and XML. This object encapsulates the atom:content element in Atom 1.0 and can contain a link to external content.
public : sealed class SyndicationContent : ISyndicationContent, ISyndicationNode, ISyndicationTextpublic sealed class SyndicationContent : ISyndicationContent, ISyndicationNode, ISyndicationTextPublic NotInheritable Class SyndicationContent Implements ISyndicationContent, ISyndicationNode, ISyndicationText// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
The following table maps SyndicationContent properties to RSS and Atom feed elements.
| SyndicationContent | RSS | Atom |
|---|---|---|
| SourceUri | src (attribute) | |
| Text | (node value) | (node value) |
| Type | type (attribute) | |
| Xml | (xhtml node value) |
Constructors
SyndicationContent() SyndicationContent() SyndicationContent() SyndicationContent()
Creates a new SyndicationContent object.
public : SyndicationContent()public SyndicationContent()Public Sub New()// You can use this method in JavaScript.
- See Also
SyndicationContent(String, SyndicationTextType) SyndicationContent(String, SyndicationTextType) SyndicationContent(String, SyndicationTextType) SyndicationContent(String, SyndicationTextType)
Creates a new SyndicationContent object with the specified Text and Type property values.
public : SyndicationContent(PlatForm::String text, SyndicationTextType type)public SyndicationContent(String text, SyndicationTextType type)Public Sub New(text As String, type As SyndicationTextType)// You can use this method in JavaScript.
- text
- PlatForm::String String String String
The text of the content.
The type of the content.
- See Also
SyndicationContent(Uri) SyndicationContent(Uri) SyndicationContent(Uri) SyndicationContent(Uri)
Creates a new SyndicationContent object with the specified Uri property value.
public : SyndicationContent(Uri sourceUri)public SyndicationContent(Uri sourceUri)Public Sub New(sourceUri As Uri)// You can use this method in JavaScript.
- See Also
Properties
AttributeExtensions AttributeExtensions AttributeExtensions AttributeExtensions
Gets the list of custom attributes of the element.
public : IVector<SyndicationAttribute> AttributeExtensions { get; }public IList<SyndicationAttribute> AttributeExtensions { get; }Public ReadOnly Property AttributeExtensions As IList<SyndicationAttribute>// You can use this property in JavaScript.
- Value
- IVector<SyndicationAttribute> IList<SyndicationAttribute> IList<SyndicationAttribute> IList<SyndicationAttribute>
A list of attributes of the element.
BaseUri BaseUri BaseUri BaseUri
Gets or sets the base URI for the element. This property represents the xml:base attribute on the element. It may be inherited from an ancestor element.
public : Uri BaseUri { get; set; }public Uri BaseUri { get; set; }Public ReadWrite Property BaseUri As Uri// You can use this property in JavaScript.
- Value
- Uri Uri Uri Uri
The xml:base attribute on the element.
ElementExtensions ElementExtensions ElementExtensions ElementExtensions
Gets the list of child elements within the element.
public : IVector<ISyndicationNode> ElementExtensions { get; }public IList<ISyndicationNode> ElementExtensions { get; }Public ReadOnly Property ElementExtensions As IList<ISyndicationNode>// You can use this property in JavaScript.
- Value
- IVector<ISyndicationNode> IList<ISyndicationNode> IList<ISyndicationNode> IList<ISyndicationNode>
The list of child elements within the element.
Remarks
The following elements in the RSS 2.0 documents do not have public accessors;they can be accessed by searching the ElementExtensions collection on the SyndicationFeed object:
- /rss/channel/docs
- /rss/channel/cloud
- /rss/channel/pubDate
- /rss/channel/webmaster
- /rss/channel/ttl
- /rss/channel/rating
- /rss/channel/textInput
- /rss/channel/skipDays
- /rss/channel/skipHours
Language Language Language Language
Gets or sets the language of the element. This property represents the xml:lang attribute on the element. It may be inherited from an ancestor element. It must be valid according to XML 1.0.
public : PlatForm::String Language { get; set; }public string Language { get; set; }Public ReadWrite Property Language As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The xml:lang attribute on the element.
NodeName NodeName NodeName NodeName
Gets or sets the local name of the element.
public : PlatForm::String NodeName { get; set; }public string NodeName { get; set; }Public ReadWrite Property NodeName As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The local name of the element. Must be valid according to XML 1.0.
NodeNamespace NodeNamespace NodeNamespace NodeNamespace
Gets or sets the namespace of the element.
public : PlatForm::String NodeNamespace { get; set; }public string NodeNamespace { get; set; }Public ReadWrite Property NodeNamespace As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The namespace of the element.
NodeValue NodeValue NodeValue NodeValue
Gets or sets the text content of the element. If the element contains only child elements, this property is NULL.
public : PlatForm::String NodeValue { get; set; }public string NodeValue { get; set; }Public ReadWrite Property NodeValue As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The text content of the element.
SourceUri SourceUri SourceUri SourceUri
Gets or sets the URI to the content. This property represents the src attribute on atom:content.
public : Uri SourceUri { get; set; }public Uri SourceUri { get; set; }Public ReadWrite Property SourceUri As Uri// You can use this property in JavaScript.
- Value
- Uri Uri Uri Uri
The src attribute on atom:content.
Text Text Text Text
Gets the syndication content.
public : PlatForm::String Text { get; set; }public string Text { get; set; }Public ReadWrite Property Text As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The text of the syndication content.
Type Type Type Type
Gets or sets the type of the content.
public : PlatForm::String Type { get; set; }public string Type { get; set; }Public ReadWrite Property Type As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
This value can be "text", "html", "xhtml" or other media types.
Methods
GetXmlDocument(SyndicationFormat) GetXmlDocument(SyndicationFormat) GetXmlDocument(SyndicationFormat) GetXmlDocument(SyndicationFormat)
Generates the DOM object that represents this element, all the attributes and child elements including foreign markups. The only formats accepted by this method are Atom 1.0 and RSS 2.0.
public : XmlDocument GetXmlDocument(SyndicationFormat format)public XmlDocument GetXmlDocument(SyndicationFormat format)Public Function GetXmlDocument(format As SyndicationFormat) As XmlDocument// You can use this method in JavaScript.
The format of the data.
The DOM object that represents this element, and all the attributes and child elements, including foreign markups.