Namespace: ITHit.WebDAV.Client
Exception | Condition |
---|---|
NotFoundException | This folder doesn't exist on the server. |
WebDavHttpException | Server returned unknown error. |
WebDavException | Unexpected error occurred. |
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/")); IHierarchyItemAsync[] children = await folder.GetChildrenAsync(false); foreach (IHierarchyItemAsync item in children) { Console.WriteLine(item.DisplayName); IFileAsync file = (IFileAsync)item; if(file!=null) Console.WriteLine(file.ContentLength); }