SyndicationItem.PublishDate 属性

定义

获取或设置联合项的发布日期。

public:
 property DateTimeOffset PublishDate { DateTimeOffset get(); void set(DateTimeOffset value); };
public DateTimeOffset PublishDate { get; set; }
member this.PublishDate : DateTimeOffset with get, set
Public Property PublishDate As DateTimeOffset

属性值

一个表示联合项发布日期的 DateTimeOffset 对象。

示例

下面的代码演示如何在 PublishDate 实例上设置 SyndicationItem

SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.PublishDate = DateTimeOffset.Now;
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.PublishDate = DateTimeOffset.Now

下面的 XML 演示如何将此属性序列化为 Atom 1.0。

<published>1968-02-23T08:00:00Z</published>  

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

<pubDate>Fri, 23 Feb 1968 08:00:00 Z</pubDate>  

注解

序列化为 Atom 1.0 时,会将此属性写入 <published> 元素。 序列化为 RSS 2.0 时,会将此属性写入 <pubDate> 元素。

适用于