Click or drag to resize

IResumableUploadAsyncLastChunkSaved 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: 11.3.10719
Syntax
DateTime LastChunkSaved { get; }

DateTime LastChunkSaved { get; }

Property Value

Type: DateTime
Remarks
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; }
}
See Also