SyndicationCategory
SyndicationCategory
SyndicationCategory
SyndicationCategory
Class
Definition
Represents the category of a feed or an item. This class encapsulates information in the /rss/channel/item/category element in RSS 2.0 or the atom:category element in Atom 1.0.
public : sealed class SyndicationCategory : ISyndicationCategory, ISyndicationNodepublic sealed class SyndicationCategory : ISyndicationCategory, ISyndicationNodePublic NotInheritable Class SyndicationCategory Implements ISyndicationCategory, ISyndicationNode// 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 SyndicationCategory properties to RSS and Atom feed elements.
| SyndicationCategory | RSS | Atom |
|---|---|---|
| Label | label (attribute) | |
| Scheme | domain (attribute) | scheme (attribute) |
| Term | (node value) | uri (attribute) |
Constructors
SyndicationCategory() SyndicationCategory() SyndicationCategory() SyndicationCategory()
Creates a SyndicationCategory object.
public : SyndicationCategory()public SyndicationCategory()Public Sub New()// You can use this method in JavaScript.
SyndicationCategory(String) SyndicationCategory(String) SyndicationCategory(String) SyndicationCategory(String)
Creates a SyndicationCategory object with the specified term property.
public : SyndicationCategory(PlatForm::String term)public SyndicationCategory(String term)Public Sub New(term As String)// You can use this method in JavaScript.
- term
- PlatForm::String String String String
A string that identifies the category. This parameter represents the required term attribute on atom:category or the text content of the category element in RSS 2.0.
- See Also
SyndicationCategory(String, String, String) SyndicationCategory(String, String, String) SyndicationCategory(String, String, String) SyndicationCategory(String, String, String)
Creates SyndicationCategory object with the specified property values.
public : SyndicationCategory(PlatForm::String term, PlatForm::String scheme, PlatForm::String label)public SyndicationCategory(String term, String scheme, String label)Public Sub New(term As String, scheme As String, label As String)// You can use this method in JavaScript.
- term
- PlatForm::String String String String
A string that identifies the category.
- scheme
- PlatForm::String String String String
The scheme of the category.
- label
- PlatForm::String String String String
A label for display in end-user applications.
- 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
Label Label Label Label
Gets or sets the label for the category. This property represents the label attribute on atom:category. It provides a label for display in end-user applications.
public : PlatForm::String Label { get; set; }public string Label { get; set; }Public ReadWrite Property Label As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The label attribute on atom:category.
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.
Scheme Scheme Scheme Scheme
Gets or sets the scheme of the category. This property represents the scheme attribute on atom:category or the domain attribute on the category element in RSS 2.0.
public : PlatForm::String Scheme { get; set; }public string Scheme { get; set; }Public ReadWrite Property Scheme As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The scheme attribute on atom:category or the domain attribute on the category element in RSS 2.0.
Term Term Term Term
Gets or sets a string that identifies the category. This property represents the required term attribute on atom:category or the text content of the category element in RSS 2.0.
public : PlatForm::String Term { get; set; }public string Term { get; set; }Public ReadWrite Property Term As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The required term attribute on atom:category or the text content of the category element in RSS 2.0.
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.