SyndicationItem::Title Property

 

Gets and sets the title of the syndication item.

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

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

Property Value

Type: System.ServiceModel.Syndication::TextSyndicationContent^

A TextSyndicationContent object that contains the title of the syndication item.

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

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

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

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

<title type="text">My Item</title>

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

<title>My Item</title>

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