SyndicationItem::Title Property
.NET Framework (current version)
Gets and sets the title of the syndication item.
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.
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
Available since 3.5
Silverlight
Available since 2.0
Show: