TextSyndicationContent Klasse

Definition

Steht für alle SyndicationItem-Inhalte, die einem Benutzer angezeigt werden sollen.

public ref class TextSyndicationContent : System::ServiceModel::Syndication::SyndicationContent
public class TextSyndicationContent : System.ServiceModel.Syndication.SyndicationContent
type TextSyndicationContent = class
    inherit SyndicationContent
Public Class TextSyndicationContent
Inherits SyndicationContent
Vererbung
TextSyndicationContent

Beispiele

Im folgenden Beispiel wird die Verwendung der TextSyndicationContent-Klasse veranschaulicht.

SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);

feed.Copyright = new TextSyndicationContent("Copyright 2007");
feed.Description = new TextSyndicationContent("This is a sample feed");

TextSyndicationContent textContent = new TextSyndicationContent("Some text content");
SyndicationItem item = new SyndicationItem("Item Title", textContent, new Uri("http://server/items"), "ItemID", DateTime.Now);
Dim feed As SyndicationFeed = New SyndicationFeed("Feed Title", "Feed Description", New Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now)

feed.Copyright = New TextSyndicationContent("Copyright 2007")
feed.Description = New TextSyndicationContent("This is a sample feed")

Dim textContent As TextSyndicationContent = New TextSyndicationContent("Some text content")
Dim item As SyndicationItem = New SyndicationItem("Item Title", textContent, New Uri("http://server/items"), "ItemID", DateTime.Now)

Hinweise

Textinhalt ist HTML (mit Escape-Zeichen), XHTML (gültiges XML ohne Escape-Zeichen) oder normaler Text.

Konstruktoren

TextSyndicationContent(String)

Initialisiert eine neue Instanz des TextSyndicationContent mit dem angegebenen Text.

TextSyndicationContent(String, TextSyndicationContentKind)

Initialisiert eine neue Instanz des TextSyndicationContent mit dem angegebenen Text und TextSyndicationContentKind.

TextSyndicationContent(TextSyndicationContent)

Initialisiert eine neue Instanz der TextSyndicationContent mit der angegebenen TextSyndicationContent-Instanz.

Eigenschaften

AttributeExtensions

Ruft die Attributerweiterungen für diesen Inhalt ab.

(Geerbt von SyndicationContent)
Text

Ruft den Text des TextSyndicationContent ab.

Type

Ruft den Inhaltstyp des TextSyndicationContents ab.

Methoden

Clone()

Erstellt eine Kopie der vorhandenen SyndicationContent-Instanz.

Equals(Object)

Bestimmt, ob das angegebene Objekt gleich dem aktuellen Objekt ist.

(Geerbt von Object)
GetHashCode()

Fungiert als Standardhashfunktion.

(Geerbt von Object)
GetType()

Ruft den Type der aktuellen Instanz ab.

(Geerbt von Object)
MemberwiseClone()

Erstellt eine flache Kopie des aktuellen Object.

(Geerbt von Object)
ToString()

Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt.

(Geerbt von Object)
WriteContentsTo(XmlWriter)

Schreibt den Inhalt des TextSyndicationContent in den angegebenen XmlWriter.

WriteTo(XmlWriter, String, String)

Schreibt den Inhalt dieses Objekts in den angegebenen XmlWriter innerhalb des definierten Elements und Element-Namespace.

(Geerbt von SyndicationContent)

Gilt für: