SyndicationItem::Summary Property

 

Gets and sets the summary of the syndication item.

Namespace:   System.ServiceModel.Syndication
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property TextSyndicationContent^ Summary {
	TextSyndicationContent^ get();
	void set(TextSyndicationContent^ value);
}

Property Value

Type: System.ServiceModel.Syndication::TextSyndicationContent^

A TextSyndicationContent that contains a summary of the item.

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.

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

No code example is currently available or this language may not be supported.

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

<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.

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

.NET Framework
Available since 3.5
Silverlight
Available since 2.0
Return to top
Show: