TextSyndicationContent Класс
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Представляет любое SyndicationItem содержимое, которое должно отображаться для конечного пользователя.
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
- Наследование
Примеры
В следующем примере показано, как использовать класс TextSyndicationContent.
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)
Комментарии
Текстовое содержимое — HTML (с escaped markup), XHTML (допустимый XML и не экранируется) или обычный текст.
Конструкторы
TextSyndicationContent(String, TextSyndicationContentKind) |
Инициализирует новый экземпляр TextSyndicationContent с указанным текстом и TextSyndicationContentKind. |
TextSyndicationContent(String) |
Инициализирует новый экземпляр TextSyndicationContent с указанным текстом. |
TextSyndicationContent(TextSyndicationContent) |
Инициализирует новый экземпляр TextSyndicationContent с указанным TextSyndicationContent экземпляром. |
Свойства
AttributeExtensions |
Возвращает расширения атрибутов для этого содержимого. (Унаследовано от SyndicationContent) |
Text |
Возвращает текст TextSyndicationContent. |
Type |
Возвращает тип контента TextSyndicationContent. |
Методы
Clone() |
Создает копию существующего экземпляра SyndicationContent. |
Equals(Object) |
Определяет, равен ли указанный объект текущему объекту. (Унаследовано от Object) |
GetHashCode() |
Служит хэш-функцией по умолчанию. (Унаследовано от Object) |
GetType() |
Возвращает Type текущего экземпляра. (Унаследовано от Object) |
MemberwiseClone() |
Создает неглубокую копию текущей Object. (Унаследовано от Object) |
ToString() |
Возвращает строку, представляющую текущий объект. (Унаследовано от Object) |
WriteContentsTo(XmlWriter) |
Записывает содержимое TextSyndicationContent в указанный XmlWriter. |
WriteTo(XmlWriter, String, String) |
Записывает содержимое этого объекта в указанный XmlWriter в пределах указанного элемента и пространства имен элементов. (Унаследовано от SyndicationContent) |