SyndicationFeed.Title プロパティ

定義

フィードのタイトルを取得または設定します。

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

プロパティ値

TextSyndicationContent

フィードのタイトルを格納している TextSyndicationContent インスタンス。

Title インスタンスの SyndicationFeed プロパティを設定する方法を次のコードに示します。

SyndicationFeed feed = new SyndicationFeed();
feed.Title = new TextSyndicationContent("My Feed Title");
Dim feed As New SyndicationFeed()
feed.Title = New TextSyndicationContent("My Feed Title")

次の XML は、Title プロパティを Atom 1.0 にシリアル化する方法を示しています。

SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Generator = "Generator Name or Description";
Dim feed As New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.Generator = "Generator Name or Description"
<title type="text">Feed Title</title>

Title プロパティを RSS 2.0 にシリアル化する方法を次の XML に示します。

<title>フィード タイトル</title>

注釈

Atom 1.0 と RSS 2.0 にシリアル化すると、 Title プロパティは要素に <title> 書き込まれます。

適用対象