Click or drag to resize

IHierarchyItemModified 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: 4.5.3121.0
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.NtfsStorage' sample provided with the SDK.

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