Length of the resource.
Length or the file in bytes.
The following example demonstrates how to upload a file from local file system to a WebDAV server and that read file length from server.
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFolder folder = session.OpenFolder(new Uri("http://server:8080/Sales"));
IResource resource = folder.CreateResource("products.xlsx");
resource.AllowWriteStreamBuffering = false;
resource.TimeOut = 36000000; // 10 hours
resource.Upload("C:\\products.xlsx");
resource.Refresh(); // ContentLength property becomes invalid after item content update, reread it from server
Console.WriteLine(resource.ContentLength);
IItemContent Interface | ITHit.WebDAV.Client Namespace