Click or drag to resize

IResumableUploadBytesUploaded Property

IT Hit WebDAV Classes Reference
Amount of bytes successfully saved to your storage.

Namespace:  ITHit.WebDAV.Server.ResumableUpload
Assembly:  ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 13.3.13068
Syntax
long BytesUploaded { get; }

Property Value

Type: Int64
Remarks

Client will use value returned by this property to restore broken upload. This value shall always reflect number of bytes already stored to persistent medium.

Requested by the Engine during a call to GetUploadProgressAsync.

Examples

The code below is part of 'WebDAVServer.FileSystemStorage.AspNet' C# & VB samples provided with the SDK.

public long BytesUploaded
{
    get { return ContentLength; }
}
See Also