ISyndicationText
ISyndicationText
ISyndicationText
ISyndicationText
Interface
Definition
Represents text, HTML, or XHTML content. This interface encapsulates elements in RSS 2.0 or Atom 1.0 that can have either text, HTML, or XHTML content. In Atom 1.0 this interface maps to an atomTextConstruct in the schema, which can be element atom:title, atom:subtitle, atom:rights or atom:summary.
public : interface ISyndicationTextpublic interface ISyndicationTextPublic Interface ISyndicationText// You can use this interface in JavaScript.
- Inheritance
-
ISyndicationTextISyndicationTextISyndicationTextISyndicationText
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited properties
Inherited methods
Remarks
Interface inheritance
ISyndicationText inherits ISyndicationNode. Types that implement ISyndicationText also implement the interface members of ISyndicationNode.
Properties
Text Text Text Text
Gets or sets the content of a text content construct like atom:title.
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 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.