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; }
ReadOnly Property BytesUploaded As Long
Get
property long long BytesUploaded {
long long get ();
}
abstract BytesUploaded : int64 with get
Property Value
Type:
Int64Remarks 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; }
}
Public ReadOnly Property BytesUploaded As Long Implements IResumableUpload.BytesUploaded
Get
Return ContentLength
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