IHierarchyItemCreated Property
IT Hit WebDAV Classes Reference
Gets the creation 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
Syntax DateTime Created { get; }
ReadOnly Property Created As DateTime
Get
property DateTime Created {
DateTime get ();
}
abstract Created : DateTime with get
Property Value
Type:
DateTimeExamples The code below is part of 'WebDAVServer.NtfsStorage' sample provided with the SDK.
public DateTime Created
{
get { return fileSystemInfo.CreationTimeUtc; }
}
See Also