SyndicationPerson
SyndicationPerson
SyndicationPerson
SyndicationPerson
Class
Definition
Represents an author or contributor of syndication content.
public : sealed class SyndicationPerson : ISyndicationNode, ISyndicationPersonpublic sealed class SyndicationPerson : ISyndicationNode, ISyndicationPersonPublic NotInheritable Class SyndicationPerson Implements ISyndicationNode, ISyndicationPerson// 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 SyndicationPerson properties to RSS and Atom feed elements.
| SyndicationPerson | RSS | Atom |
|---|---|---|
| (node value) | ||
| Name | name | |
| Uri | uri |
Constructors
SyndicationPerson() SyndicationPerson() SyndicationPerson() SyndicationPerson()
Creates a SyndicationPerson object.
public : SyndicationPerson()public SyndicationPerson()Public Sub New()// You can use this method in JavaScript.
SyndicationPerson(String) SyndicationPerson(String) SyndicationPerson(String) SyndicationPerson(String)
Creates a SyndicationPerson object with the specified Name property value.
public : SyndicationPerson(PlatForm::String name)public SyndicationPerson(String name)Public Sub New(name As String)// You can use this method in JavaScript.
- name
- PlatForm::String String String String
The name of the SyndicationPerson. This parameter represents the atom:name element.
- See Also
SyndicationPerson(String, String, Uri) SyndicationPerson(String, String, Uri) SyndicationPerson(String, String, Uri) SyndicationPerson(String, String, Uri)
Creates a SyndicationPerson object with the specified Name, Email, and Uri property values.
public : SyndicationPerson(PlatForm::String name, PlatForm::String email, Uri uri)public SyndicationPerson(String name, String email, Uri uri)Public Sub New(name As String, email As String, uri As Uri)// You can use this method in JavaScript.
- name
- PlatForm::String String String String
The name of the SyndicationPerson. This parameter represents the atom:name element.
- PlatForm::String String String String
Gets or sets the email address of the person. This property represents the atom:email element.
- uri
- Uri Uri Uri Uri
Gets or sets the Uniform Resource Identifier (URI) of the person. This property represents the atom:uri element. It is the absolute URI resolved against the xml:base attribute, if it is present. If the href attribute is a relative URI string and there is no xml:base attribute, this property is NULL because relative URI is not supported by the runtime URI class.
- 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
Email Email Email Email
Gets or sets the email address of the person.
public : PlatForm::String Email { get; set; }public string Email { get; set; }Public ReadWrite Property Email As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The atom:email element.
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.
Name Name Name Name
Gets the name of the syndication person.
public : PlatForm::String Name { get; set; }public string Name { get; set; }Public ReadWrite Property Name As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The atom:name 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.
Uri Uri Uri Uri
Gets or sets the Uniform Resource Identifier (URI) of the person. This property represents the atom:uri element. It is the absolute Uniform Resource Identifier (URI) resolved against the xml:base attribute, if it is present. If the href attribute is a relative Uniform Resource Identifier (URI) string and there is no xml:base attribute, this property is NULL because the relative Uniform Resource Identifier (URI) is not supported by the runtime Uniform Resource Identifier (URI) class.
public : Uri Uri { get; set; }public Uri Uri { get; set; }Public ReadWrite Property Uri As Uri// You can use this property in JavaScript.
- Value
- Uri Uri Uri Uri
The Uniform Resource Identifier (URI) of the person.
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.