IHierarchyItemBaseAsyncModified 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: 11.3.10719
Syntax DateTime Modified { get; }
DateTime Modified { get; }
ReadOnly Property Modified As DateTime
Get
ReadOnly Property Modified As DateTime
Get
property DateTime Modified {
DateTime get ();
}
property DateTime Modified {
DateTime get ();
}
abstract Modified : DateTime with 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 IHierarchyItemBaseAsync.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