Поделиться через


SyndicationItem.Summary Свойство

Определение

Получает или задает сводку элемента синдикации.

public:
 property System::ServiceModel::Syndication::TextSyndicationContent ^ Summary { System::ServiceModel::Syndication::TextSyndicationContent ^ get(); void set(System::ServiceModel::Syndication::TextSyndicationContent ^ value); };
public System.ServiceModel.Syndication.TextSyndicationContent Summary { get; set; }
member this.Summary : System.ServiceModel.Syndication.TextSyndicationContent with get, set
Public Property Summary As TextSyndicationContent

Значение свойства

Экземпляр TextSyndicationContent, содержащий сводку элемента.

Примеры

В следующем примере кода показано, как задать свойство Summary в экземпляре SyndicationItem.

SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Summary = new TextSyndicationContent("This is a syndication item summary");
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.Summary = New TextSyndicationContent("This is a syndication item summary")

В следующем XML-коде показано, как свойство Summary сериализуется в Atom 1.0.

<summary type="text">this is a summary for my item</summary>

В следующем XML-коде показано, как свойство Summary сериализуется в RSS 2.0.

<description>this is a summary for my item</description>

Комментарии

При сериализации в Atom 1.0 данное свойство записывается в элемент <summary>. При сериализации в RSS 2.0 данное свойство записывается в элемент <description>.

Применяется к