IHierarchyItemBaseModified 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.Server
Assembly:
ITHit.Server (in ITHit.Server.dll) Version: 13.3.13068
Syntax DateTime Modified { get; }
ReadOnly Property Modified As DateTime
Get
property DateTime Modified {
DateTime get ();
}
abstract Modified : DateTime with get
Property Value
Type:
DateTimeRemarks
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; } }
Public ReadOnly Property Modified As DateTime Implements IHierarchyItemBase.Modified
Get
Return fileSystemInfo.LastWriteTimeUtc
End Get
End Property
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also