Namespace: ITHit.WebDAV.Client
Exception | Condition |
---|---|
UnauthorizedException | Incorrect credentials provided or insufficient permissions to access the requested item. |
NotFoundException | The requested folder doesn't exist on the server. |
ForbiddenException | The server refused to fulfill the request. |
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 = null; try { folder = await session.OpenFolderAsync("https://server/Products/"); } catch(UnauthorizedException) { Console.WriteLine("Incorrect user name or password."); } catch(NotFoundException) { Console.WriteLine("Folder not found."); } if (folder != null) { Console.WriteLine(folder.LastModified.ToString()); }