SyndicationFeed.Title プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
フィードのタイトルを取得または設定します。
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 インスタンス。
例
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>
書き込まれます。