SyndicationFeed.Title 属性
定义
获取或设置源的标题。Gets or sets the title of the feed.
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 实例。A TextSyndicationContent instance that contains the title of the feed.
示例
下面的代码演示如何设置 Title 实例的 SyndicationFeed 属性。The following code shows how to set the Title property of a SyndicationFeed instance.
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。The following XML shows how the Title property is serialized to 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。The following XML shows how the Title property is serialized to RSS 2.0.
<title>源标题</title>
注解
序列化为 Atom 1.0 和 RSS 2.0 时, Title 会将属性写入 <title> 元素。When serialized to Atom 1.0 and RSS 2.0, the Title property is written to a <title> element.