SyndicationItem.LastUpdatedTime Property

Definition

Gets or sets the last updated time for the syndication item.

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

Property Value

A DateTimeOffset instance that represents the time the syndication item was last updated.

Examples

The following code shows how to set the LastUpdatedTime property on a SyndicationItem instance.

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

The following XML shows how this property is serialized to Atom 1.0.

<updated>2007-03-19T20:34:23Z</updated>  

The following XML shows how this property is serialized to RSS 2.0.

<a10:updated>2007-03-19T20:34:23Z</a10:updated>  

Remarks

When serialized to Atom 1.0, this property is written to an <updated> item. When serialized to RSS 2.0, this property is written to an <a10:updated> item.

Applies to