SyndicationItem.PublishDate 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置联合项的发布日期。
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>
元素。