Click or drag to resize

IHierarchyItemAsyncRefreshAsync Method

IT Hit WebDAV Classes Reference
Rereads item properties from server.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 2.0.420.0
Syntax
Task RefreshAsync()

Return Value

Type: Task

[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IHierarchyItemAsync.RefreshAsync"]

Remarks
Use this method after uploading item content or after any methods that modify item state on server.
Examples
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...
WebDavSessionAsync session = new WebDavSessionAsync(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFolderAsync folder = await session.OpenFolderAsync(new Uri("http://server:8080/Sales"));

IFileAsync file = await folder.CreateFileAsync("products.xlsx");
file.AllowWriteStreamBuffering = false;
file.TimeOut = 36000000; // 10 hours
await file.UploadAsync("C:\\products.xlsx");
await file.RefreshAsync(); // ContentLength property becomes invalid after item content update, reread it from server
Console.WriteLine(file.ContentLength);
See Also