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>

下面的 XML 演示如何将 Title 属性序列化为 RSS 2.0。

<title>源标题</title>

注解

序列化为 Atom 1.0 和 RSS 2.0 时,该 Title 属性将写入 <title> 元素。

适用于