IResumableUploadAsyncTotalContentLength Property
IT Hit WebDAV Classes Reference Total file size that is being uploaded.
Namespace:
ITHit.WebDAV.Server.ResumableUpload
Assembly:
ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 11.3.10719
Syntaxlong TotalContentLength { get; }
long TotalContentLength { get; }
ReadOnly Property TotalContentLength As Long
Get
ReadOnly Property TotalContentLength As Long
Get
property long long TotalContentLength {
long long get ();
}
property long long TotalContentLength {
long long get ();
}
abstract TotalContentLength : int64 with get
abstract TotalContentLength : int64 with get
Return Value
Type:
Int64Total file size in bytes.
RemarksThis value is passed to [!:IContentAsync.WriteAsync] method.
Usually AJAX/HTML based clients will use value returned by this property to display upload progress.
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 TotalContentLength
{
get; private set;
}
Public Property TotalContentLength As Long Implements IResumableUploadAsync.TotalContentLength
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