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.ServerAssembly: ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 4.5.3121.0
SyntaxDateTime Modified { get; }
ReadOnly Property Modified As DateTime
Get
property DateTime Modified {
DateTime get ();
}
abstract Modified : DateTime with 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.
ExamplesThe code below is part of 'WebDAVServer.NtfsStorage' sample provided with the SDK.
public DateTime Modified
{
get { return fileSystemInfo.LastWriteTimeUtc; }
}
See Also