SyndicationFeed.Description Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Akışın açıklamasını alır veya ayarlar.
public:
property System::ServiceModel::Syndication::TextSyndicationContent ^ Description { System::ServiceModel::Syndication::TextSyndicationContent ^ get(); void set(System::ServiceModel::Syndication::TextSyndicationContent ^ value); };
public System.ServiceModel.Syndication.TextSyndicationContent Description { get; set; }
member this.Description : System.ServiceModel.Syndication.TextSyndicationContent with get, set
Public Property Description As TextSyndicationContent
Özellik Değeri
TextSyndicationContent Akışın açıklamasını temsil eden bir nesne.
Örnekler
Aşağıdaki kod, bir SyndicationFeedöğesinin Description nasıl ayarlandığını gösterir.
List<SyndicationItem> items = new List<SyndicationItem>();
SyndicationItem item1 = new SyndicationItem();
item1.Title = new TextSyndicationContent("Item 1");
item1.Content = SyndicationContent.CreatePlaintextContent("This is the content for Item 1");
items.Add(item1);
SyndicationItem item2 = new SyndicationItem();
item2.Title = new TextSyndicationContent("Item 2");
item2.Content = SyndicationContent.CreatePlaintextContent("This is the content for Item 2");
items.Add(item2);
SyndicationFeed feed = new SyndicationFeed(items);
feed.Description = new TextSyndicationContent("This is a feed description");
Dim items As New List(Of SyndicationItem)()
Dim item1 As New SyndicationItem()
item1.Title = New TextSyndicationContent("Item 1")
item1.Content = SyndicationContent.CreatePlaintextContent("This is the content for Item 1")
items.Add(item1)
Dim item2 As New SyndicationItem()
item2.Title = New TextSyndicationContent("Item 2")
item2.Content = SyndicationContent.CreatePlaintextContent("This is the content for Item 2")
items.Add(item2)
Dim feed As New SyndicationFeed(items)
feed.Description = New TextSyndicationContent("This is a feed description")
Aşağıdaki XML, Atom 1.0'a nasıl Description seri hale getirileceğini gösterir.
<subtitle type="text">This is a sample feed</subtitle>
Aşağıdaki XML, RSS 2.0'a nasıl Description seri hale getirileceğini gösterir.
<description>This is a sample feed</description>
Açıklamalar
Atom 1.0'a seri hale getirildiğinde bir Description<subtitle>
öğeye yazılır.
RSS 2.0'a seri hale getirildiğinde, Description bir <description>
öğeye yazılır.