SyndicationItem::LastUpdatedTime Property

 

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

Namespace:   System.ServiceModel.Syndication
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property DateTimeOffset LastUpdatedTime {
	DateTimeOffset get();
	void set(DateTimeOffset value);
}

Property Value

Type: System::DateTimeOffset

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

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.

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

No code example is currently available or this language may not be supported.

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>

.NET Framework
Available since 3.5
Silverlight
Available since 2.0
Return to top
Show: