IResumableUploadAsyncBytesUploaded 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: 11.3.10719
Syntaxlong BytesUploaded { get; }
long BytesUploaded { get; }
ReadOnly Property BytesUploaded As Long
Get
ReadOnly Property BytesUploaded As Long
Get
property long long BytesUploaded {
long long get ();
}
property long long BytesUploaded {
long long get ();
}
abstract BytesUploaded : int64 with get
abstract BytesUploaded : int64 with get
Property Value
Type:
Int64
RemarksClient 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.
ExamplesThe 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 IResumableUploadAsync.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