อ่านในภาษาอังกฤษ แก้ไข

แชร์ผ่าน


SyndicationItem.Summary Property

Definition

Gets or sets the summary of the syndication item.

C#
public System.ServiceModel.Syndication.TextSyndicationContent Summary { get; set; }

Property Value

A TextSyndicationContent that contains a summary of the item.

Examples

The following code shows how to set the Summary property on a SyndicationItem instance.

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

The following XML shows how the Summary property is serialized to Atom 1.0.

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

The following XML shows how the Summary property is serialized to RSS 2.0.

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

Remarks

When serialized to Atom 1.0, this property is written to a <summary> element. When serialized to RSS 2.0, this property is written to a <description> element.

Applies to

ผลิตภัณฑ์ เวอร์ชัน
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)