Click or drag to resize

IHierarchyItemAsyncModified Property

IT Hit WebDAV Classes Reference
Gets the last modification date of the item in repository expressed as the coordinated universal time (UTC).

Namespace:  ITHit.WebDAV.Server
Assembly:  ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 7.1.4620
Syntax
DateTime Modified { get; }

Property Value

Type: DateTime
Remarks
Value of this property must change only when content of the item changes. It must not change when item is locked or unlocked or properties modified. In particular Mac OS relies on such behavior.
Examples

The code below is part of 'WebDAVServer.FileSystemStorage.AspNet' C# & VB samples provided with the SDK.

public DateTime Modified { get { return fileSystemInfo.LastWriteTimeUtc; } }
See Also