SyndicationItem.Title Property

Definition

Gets or sets the title of the syndication item.

public:
 property System::ServiceModel::Syndication::TextSyndicationContent ^ Title { System::ServiceModel::Syndication::TextSyndicationContent ^ get(); void set(System::ServiceModel::Syndication::TextSyndicationContent ^ value); };
public System.ServiceModel.Syndication.TextSyndicationContent Title { get; set; }
member this.Title : System.ServiceModel.Syndication.TextSyndicationContent with get, set
Public Property Title As TextSyndicationContent

Property Value

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

Examples

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

SyndicationItem item = new SyndicationItem();
item.Title = new TextSyndicationContent("Item Title");
Dim item As New SyndicationItem()
item.Title = New TextSyndicationContent("Item Title")

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>

Remarks

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

Applies to