SyndicationItem::LastUpdatedTime Property
.NET Framework (current version)
Gets and sets the last updated time for the syndication item.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public: property DateTimeOffset LastUpdatedTime { DateTimeOffset get(); void set(DateTimeOffset value); }
Property Value
Type: System::DateTimeOffsetA 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.
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
Available since 3.5
Silverlight
Available since 2.0
Show: