IResumableUploadLastChunkSaved Property
IT Hit WebDAV Classes Reference
The date and time when the last chunk of file was saved in your storage.
Namespace:
ITHit.WebDAV.Server.ResumableUpload
Assembly:
ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 13.3.13068
Syntax DateTime LastChunkSaved { get; }
ReadOnly Property LastChunkSaved As DateTime
Get
property DateTime LastChunkSaved {
DateTime get ();
}
abstract LastChunkSaved : DateTime with get
Property Value
Type:
DateTimeRemarks Examples The code below is part of 'WebDAVServer.FileSystemStorage.AspNet' C# & VB samples provided with the SDK.
public DateTime LastChunkSaved
{
get { return fileInfo.Exists ? fileInfo.LastWriteTimeUtc : DateTime.MinValue; }
}
Public ReadOnly Property LastChunkSaved As DateTime Implements IResumableUpload.LastChunkSaved
Get
Return If(fileInfo.Exists, fileInfo.LastWriteTimeUtc, DateTime.MinValue)
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